![]() |
|
Welcome to the Computer Webmaster Gaming Console Graphics Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| |||||||
| HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| Table 1 contains a list of 10 items which I want to remain constantly visible. Each item in it's own cell just for clarification. Below it is Table 2 which contains a short description of something or other. As user clicks on cell3 in table 1, I want table 2 to show other information. Cell5 in table 1 would show yet other items. Anyone have any clues or an example of how this might happen? No frames. Just playing around with an idea. thanks. | |||
| Advertisements |
| | #2 | ||
| "Richard" <anom@anom> wrote: >Table 1 contains a list of 10 items which I want to remain constantly >visible. >Each item in it's own cell just for clarification. > >Below it is Table 2 which contains a short description of something or >other. > >As user clicks on cell3 in table 1, I want table 2 to show other >information. Cell5 in table 1 would show yet other items. > >Anyone have any clues or an example of how this might happen? > >No frames. Just playing around with an idea. Build ten pages. Have the same table 1 in all ten of them (include it via a pre-processor or SSI to save on the copy and paste). Have different contents below the common table (may or may not be another table depending on contents). Links in table 1 go to pageX.html#table2 where X is the number of the page and where there's a <a name="table2"> or id="table2" at the start of table2. Steve -- "My theories appal you, my heresies outrage you, I never answer letters and you don't like my tie." - The Doctor Steve Pugh <steve@pugh.net> <http://steve.pugh.net/> | |||
| | #3 | ||
| "Steve Pugh" <steve@pugh.net> wrote in message news:qsr5gv49rg0a0e9qfmp3k2e0b4odb2o9nu@4ax.com... > "Richard" <anom@anom> wrote: > > >Table 1 contains a list of 10 items which I want to remain constantly > >visible. > >Each item in it's own cell just for clarification. > > > >Below it is Table 2 which contains a short description of something or > >other. > > > >As user clicks on cell3 in table 1, I want table 2 to show other > >information. Cell5 in table 1 would show yet other items. > > > >Anyone have any clues or an example of how this might happen? > > > >No frames. Just playing around with an idea. > > Build ten pages. > Have the same table 1 in all ten of them (include it via a > pre-processor or SSI to save on the copy and paste). > Have different contents below the common table (may or may not be > another table depending on contents). > Links in table 1 go to pageX.html#table2 where X is the number of the > page and where there's a <a name="table2"> or id="table2" at the start > of table2. > > Steve Thanks. I have looked at that but would like to avoid duplicating pages. If an image can be rotated in a table on the same page, why not text? I was thinking of using a function to display the chosen item results, but don't know how to work the coding within the function itself. such as: function choice1 () { if ..............<body><html><table>write text here</table>....... I have the "java script bible" but it doesn't get into that kind of detail. working samples would be nice. | |||
| | #4 | ||
| >From: anom@anom (Richard) >Table 1 contains a list of 10 items which I >want to remain constantly visible. >Each item in it's own cell just for >clarification. >Below it is Table 2 which contains a short >description of something or other. >As user clicks on cell3 in table 1, I want >table 2 to show other information. Cell5 in >table 1 would show yet other items. >Anyone have any clues or an example of >how this might happen? Use JavaScript... have a look at my front page (link below) and View Source to see how the effect works near the top of the page when you mouseover certain (colored) table cells and get a (text) Image below... which is different depending on which cell you mouseover... This may not be exactly what you want, but it accomplishes the same type of thing! Web Design-Magic-Painting-Junking-Games INFO 2000 For You http://www.davmagic.com | |||
| | #5 | ||
| "Richard" <anom@anom> wrote: > >"Steve Pugh" <steve@pugh.net> wrote in message >news:qsr5gv49rg0a0e9qfmp3k2e0b4odb2o9nu@4ax.com.. . >> "Richard" <anom@anom> wrote: >> >> >Table 1 contains a list of 10 items which I want to remain constantly >> >visible. >> >Each item in it's own cell just for clarification. >> > >> >Below it is Table 2 which contains a short description of something or >> >other. >> > >> >As user clicks on cell3 in table 1, I want table 2 to show other >> >information. Cell5 in table 1 would show yet other items. >> > >> >Anyone have any clues or an example of how this might happen? >> > >> >No frames. Just playing around with an idea. >> >> Build ten pages. >> Have the same table 1 in all ten of them (include it via a >> pre-processor or SSI to save on the copy and paste). >> Have different contents below the common table (may or may not be >> another table depending on contents). >> Links in table 1 go to pageX.html#table2 where X is the number of the >> page and where there's a <a name="table2"> or id="table2" at the start >> of table2. >> > >Thanks. I have looked at that but would like to avoid duplicating pages. Then go for a database solution. One "page" that displays different content depending on a variable in the URL. >If an image can be rotated in a table on the same page, why not text? Would you want to download all the text at once, even if you only wanted to look at one out of the ten pages? And what is displayed when JavaScript is disabled? It can be done quite eaisly with JavaScript. Either by creating new text nodes in the DOM or by simply manipulating the CSS display property of a block of text (and other methods using proprietary properties like innerHTML). Steve -- "My theories appal you, my heresies outrage you, I never answer letters and you don't like my tie." - The Doctor Steve Pugh <steve@pugh.net> <http://steve.pugh.net/> | |||
| | #6 | ||
| "Richard" <anom@anom> wrote in message news:bdv8n201qrm@enews4.newsguy.com... > > "Steve Pugh" <steve@pugh.net> wrote in message > news:4036gv8khad1ma7idmcr986790n5kd25sr@4ax.com... > > "Richard" <anom@anom> wrote: > > > > > > > >"Steve Pugh" <steve@pugh.net> wrote in message > > >news:qsr5gv49rg0a0e9qfmp3k2e0b4odb2o9nu@4ax.com.. . > > >> "Richard" <anom@anom> wrote: > > >> > > >> >Table 1 contains a list of 10 items which I want to remain constantly > > >> >visible. > > >> >Each item in it's own cell just for clarification. > > >> > > > >> >Below it is Table 2 which contains a short description of something or > > >> >other. > > >> > > > >> >As user clicks on cell3 in table 1, I want table 2 to show other > > >> >information. Cell5 in table 1 would show yet other items. > > >> > > > >> >Anyone have any clues or an example of how this might happen? > > >> > > > >> >No frames. Just playing around with an idea. > > >> > > >> Build ten pages. > > >> Have the same table 1 in all ten of them (include it via a > > >> pre-processor or SSI to save on the copy and paste). > > >> Have different contents below the common table (may or may not be > > >> another table depending on contents). > > >> Links in table 1 go to pageX.html#table2 where X is the number of the > > >> page and where there's a <a name="table2"> or id="table2" at the start > > >> of table2. > > >> > > > > > >Thanks. I have looked at that but would like to avoid duplicating pages. > > > > Then go for a database solution. One "page" that displays different > > content depending on a variable in the URL. > > > > >If an image can be rotated in a table on the same page, why not text? > > > > Would you want to download all the text at once, even if you only > > wanted to look at one out of the ten pages? And what is displayed when > > JavaScript is disabled? > > > > It can be done quite eaisly with JavaScript. Either by creating new > > text nodes in the DOM or by simply manipulating the CSS display > > property of a block of text (and other methods using proprietary > > properties like innerHTML). > > > > Steve > > Thanks. It is something close to what I'm looking for. > I'll just keep looking around for more kloos. You could put an <iframe> in the cell you want to change, and have the link direct the results to that. | |||
| | #7 | ||
| "David Graham" <david.graham16@ntlworld.com> wrote in message news:4jTMa.465$PK2.91@newsfep1-gui.server.ntli.net... > > "Richard" <anom@anom> wrote in message > news:bdv8n201qrm@enews4.newsguy.com... > > > > "Steve Pugh" <steve@pugh.net> wrote in message > > news:4036gv8khad1ma7idmcr986790n5kd25sr@4ax.com... > > > "Richard" <anom@anom> wrote: > > > > > > > > > > >"Steve Pugh" <steve@pugh.net> wrote in message > > > >news:qsr5gv49rg0a0e9qfmp3k2e0b4odb2o9nu@4ax.com.. . > > > >> "Richard" <anom@anom> wrote: > > > >> > > > >> >Table 1 contains a list of 10 items which I want to remain > constantly > > > >> >visible. > > > >> >Each item in it's own cell just for clarification. > > > >> > > > > >> >Below it is Table 2 which contains a short description of something > or > > > >> >other. > > > >> > > > > >> >As user clicks on cell3 in table 1, I want table 2 to show other > > > >> >information. Cell5 in table 1 would show yet other items. > > > >> > > > > >> >Anyone have any clues or an example of how this might happen? > > > >> > > > > >> >No frames. Just playing around with an idea. > > > >> > > > >> Build ten pages. > > > >> Have the same table 1 in all ten of them (include it via a > > > >> pre-processor or SSI to save on the copy and paste). > > > >> Have different contents below the common table (may or may not be > > > >> another table depending on contents). > > > >> Links in table 1 go to pageX.html#table2 where X is the number of the > > > >> page and where there's a <a name="table2"> or id="table2" at the > start > > > >> of table2. > > > >> > > > > > > > >Thanks. I have looked at that but would like to avoid duplicating > pages. > > > > > > Then go for a database solution. One "page" that displays different > > > content depending on a variable in the URL. > > > > > > >If an image can be rotated in a table on the same page, why not text? > > > > > > Would you want to download all the text at once, even if you only > > > wanted to look at one out of the ten pages? And what is displayed when > > > JavaScript is disabled? > > > > > > It can be done quite eaisly with JavaScript. Either by creating new > > > text nodes in the DOM or by simply manipulating the CSS display > > > property of a block of text (and other methods using proprietary > > > properties like innerHTML). > > > > > > Steve > > > > Thanks. It is something close to what I'm looking for. > > I'll just keep looking around for more kloos. > > > Try > http://porjes.com/hide3.html#d3 > Thanks. Just the ticket. | |||
| Featured Websites | ||||
|
![]() |
| Tags: create, output, problem, specified, table, text |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Create a copy of a table using SELECT | Amer Neely | Database | 0 | 06-10-2007 12:22 AM |
| Only output values from a table that are NOT NULL? | Bill Y. Barool | Database | 1 | 05-31-2007 8:43 PM |
| enum can't create table | paul | Database | 1 | 05-31-2007 8:41 PM |
| Big text from shelloutput into table? | AO | Database | 0 | 05-31-2007 8:38 PM |
| Having problem creating a new Table in SQL database, | Dr.Tulip | Database | 0 | 05-31-2007 8:38 PM |
| Featured Websites | ||||
|