Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 18649 invoked from network); 17 Oct 2004 02:29:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 17 Oct 2004 02:29:00 -0000 Received: (qmail 71331 invoked by uid 500); 17 Oct 2004 02:27:33 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 71311 invoked by uid 500); 17 Oct 2004 02:27:33 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 71298 invoked by uid 99); 17 Oct 2004 02:27:33 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [64.39.1.217] (HELO mx.sat.corp.rackspace.com) (64.39.1.217) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 16 Oct 2004 19:27:32 -0700 Received: from mail.rackspace.com (mail.rackspace.com [64.39.2.181]) by mx.sat.corp.rackspace.com (8.12.3/8.12.3) with ESMTP id i9H2RWH0030897 for ; Sat, 16 Oct 2004 21:27:35 -0500 Received: from core2dev.rackspace.com (core2dev.rackspace.com [10.1.15.47]) by mail.rackspace.com (8.12.10/8.12.10) with ESMTP id i9H2RNON019013 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sat, 16 Oct 2004 21:27:23 -0500 Date: Sat, 16 Oct 2004 21:27:22 -0500 (CDT) From: "M. Dragon" To: users@httpd.apache.org In-Reply-To: <4171A513.1020103@amfes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Rackspace-RTS-MailScanner-Information: Please contact the ISP for more information X-MailScanner: WVtbaj07: Found to be clean X-MailScanner-From: mdragon@rackspace.com X-Virus-Checked: Checked Subject: Re: [users@httpd] Segmented Page Updates X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Sat, 16 Oct 2004, Daniel L. Miller wrote: > This may be more of an HTML type question - but as I'm developing for an > Apache server I will ask here first. > > I would like to serve pages to my client's browsers (primarily Firefox) > where after clicking an option in a part of the page a different area > changes. Example: a list of people is displayed in an independently > scrollable column on the left side, and as each person's name is > clicked, their detailed information is displayed in the upper right. > What technology should I look into to accomplish this using Apache 1.x > on Linux and Firefox browsers? Frames, layouts, or something else? This isn't really much of a server-related question, but I've got an answer anyways :> Where I work, we have a webapp that does this all the time. The basic way you do this is to have a
tag (with the 'id' attribute set so you can find it.) and use a bit of javascript to fetch and reload the contents of the div. You have to do the loading differently for IE and Firefox/mozilla. Moz/Firefox has an XMLHttpRequest object you can use to fetch the new content. In IE you have to use an ActiveX object named "microsoft.XMLHTTP" -- M. Dragon --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org