Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by plectrum

  1. plectrum

    tabs using javascript and CSS

    I solved the problem by adding "position: absolute" Thanks. .tabcontent { position: absolute; width: 100%; height: 245px; font-family: arial; font-size: 14px; overflow: auto; border-style: solid; border-color: #bbbbbb...
  2. plectrum

    tabs using javascript and CSS

    Well, the problem still exists in IE6 after the page got validated. Validated code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Logs</title> <script type="text/javascript"> <!-- function TabPanelDisplay() {...
  3. plectrum

    tabs using javascript and CSS

    I have enclosed an html page that have two tabs, the user can swap two contents in the divs. Both divs have "overflow:auto" in style. In IE6, when I tab two divs back and forth, the div with long content disappeared from the view. It will appear again if I resize the browser window. This doesn't...
  4. plectrum

    Format a column of table cells

    Try this http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/wordwrap.asp But it's for IE only Jack
  5. plectrum

    dynamic directed/undirected graph lib for javascript?

    Well, haven't been here for a while...what I am looking for is not the bar/pie chart...I was wondering if there's any "javascript" libs to do the graph theory like the one in http://touchgraph.com/ which is using "java".
  6. plectrum

    How to disable toggle buttons until the page is fully loaded?

    Hi, I have a cgi to generate a html page which contains three tables in three <div>'s in place, and there're three buttons on the top of the page so that users can toggle among these three div's. Since the first table is small and other two are huge and take time to load, but the toggle buttons...
  7. plectrum

    highlight chosen table cells

    Now I have more than few thousands rows in my table, to execute this script really took a while. Is there a way to highlight the cells while it's executing so that the user can visually see something is going on instead of wondering something wrong while waiting? Thanks
  8. plectrum

    highlight chosen table cells

    Dan, Thanks a lot. I also realized that Mozilla and Netscape don't support innerText but only innerHTML, so replacing innerText with innerHTML will work fine.
  9. plectrum

    highlight chosen table cells

    Dan, thanks for the help, it is what I need. But, this seems only work for IE, not for netscape or mozilla.Maybe they don't support "cells" and "rows" properties? plectrum
  10. plectrum

    highlight chosen table cells

    Hi, Please help. What I want to do is: I have a big table, each cell has a different number in it, and I have a separate number selector, when I select, say, "100", all the cells with the number > 100 will be highlighted with different color. Is there an easy way to do this without re-drawing...
  11. plectrum

    dynamic directed/undirected graph lib for javascript?

    I do know that, that's why I wonder if any Javascript implementation for Graph display since I prefer to use Javascript than Java appletes for browser applications.
  12. plectrum

    dynamic directed/undirected graph lib for javascript?

    Hi, Is there any open source JavaScript graph libraries around? I've been searching around, seems only Java lib is available. Thx
  13. plectrum

    change the cursor style in an input text box?

    Hi, Is it possible to change the cursor style in an input text field from thin vertical line into solid blinking block? Does CSS support this style? Thx,
  14. plectrum

    Advanced Drop down

    These are very nice posts. I've done something similar to this a while ago. Since I had more than 10000+ options in the SELECT menu, in order to scroll the list while you type in the text box (no Enter required) and scroll fast, it's better to create an index array since you already knew what...
  15. plectrum

    target an IFRAME inside a DIV in a regular frame from other frames?

    Finally got it to work! For W3C-DOM, the iframe is never entered into the frames array, so the "parent.frame_A.iFrameName.location.href" syntax will not work. By switching to "parent.frame_A.document.getElementById('iFrameName').src", it works fine. :) Thx, plectrum

Part and Inventory Search

Back
Top