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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aperfectcircle

    Dynamically Change button text on click

    Here's an example: <html> <head> <script type="text/javascript"> function changeDisplay() { switch(document.forms[0].myButton.value) { case "Hide" : document.getElementById("myTable").style.visibility = "hidden"; document.forms[0].myButton.value = "Show"; break; case "Show" ...
  2. aperfectcircle

    submit multiple forms

    Uhhh...put everything into one form. I have no idea exactly how I did this... I can look on Monday and see if I can find the page I was working on. If so I'll let you know what I did.
  3. aperfectcircle

    Dynamic text in layer

    If you give the layer an ID you can use innerHTML to change it... For example, if the layer's id is &quot;layer1&quot;, you can add the following to your moveLayer function: document.getElementById(&quot;layer1&quot;).innerHTML = title This works in IE5+ and NS6+...
  4. aperfectcircle

    NO tile Background Image

    What version of Netscape are you using? style=&quot;background-image: url('/path/image.gif'); background-repeat: no-repeat;&quot; works for me in 4.78...
  5. aperfectcircle

    Debugging a simple IF statement

    Just a quick though, but are you getting the value of &quot;insal&quot; from a form? If you are and you haven't converted it to a number that could be the problem...
  6. aperfectcircle

    printing flash/giff browser style sheets

    As far as I know this won't work in any version of Netscape...
  7. aperfectcircle

    css and forms

    You can do this in Netscape 6+ and Mozilla like this: input[type=&quot;text&quot;] { border-style: none; } But as far as I know it can't be done in IE...
  8. aperfectcircle

    Images and Bulleted lists

    It is also possible to use an image as the bullet...but I seriously doubt NN4.x will support it. ul { list-style-image: url(&quot;yourimage.gif&quot;); }
  9. aperfectcircle

    variable question

    In something like document.form1.fieldname.value = &quot;text&quot;, is there any way to set &quot;fieldname&quot; from a variable?
  10. aperfectcircle

    print out document without opening the doc

    It depends what browser you're supporting... In IE you can put <link rel=&quot;alternate&quot; media=&quot;print&quot; href=&quot;document.doc&quot;> between the <head> and </head> tags. Then when you print the page it will print the &quot;document.doc&quot; file... I'm not sure what versions...
  11. aperfectcircle

    CSS - Border Color of Select Control

    Here's the code I used to test this: <html> <head> <style type=&quot;text/css&quot;> select,option { background-image: url(&quot;image.gif&quot;); border: 4px solid blue; } </style> </head> <body> <select> <option>First</option> <option>Second</option> <option>Third</option> </select> </body>...
  12. aperfectcircle

    CSS - Border Color of Select Control

    Trevman is right. You can set a border for a select in Netscape 6.1... You can also set a background image for the <option>s...
  13. aperfectcircle

    For the life of me...

    Yes, that (the onmouseover event) would be the problem. That was a bug with Mozilla that was not fixed in the version that Netscape 6.1 is based on...
  14. aperfectcircle

    For the life of me...

    What exact version of Netscape are you using? I'm running 6.1 and it is working fine with the code you posted (after changing the class name)... If you're using 6.0 or 6.01 it could be a bug in the browser. There is also a small chance that it is a problem elsewhere in the code... You could...
  15. aperfectcircle

    For the life of me...

    What did you change it to? The class name &quot;link&quot; will not work in Netscape 6x Also, you don't have those comments in there, do you?
  16. aperfectcircle

    For the life of me...

    Change the name of the class...
  17. aperfectcircle

    Scrolling text box problem...

    Try adding style=&quot;overflow:visible;&quot; to your textarea tags. This should work in IE...
  18. aperfectcircle

    placement of background graphic using css

    body { background-image: url(&quot;yourimage&quot;); background-repeat: no-repeat; background-position: center center; }
  19. aperfectcircle

    XHTML questions

    As far as I know you should be able to include javascript like this: <script type=&quot;text/javascript&quot;></script>
  20. aperfectcircle

    disable links

    I guess I should explain it a little... Just enter any link (<a href=&quot;whatever.html&quot;>text</a>) in the textbox and click the button. It will remove everything but the text between the <a> and </a> tags.

Part and Inventory Search

Back
Top