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 Mike Lewis 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. timjwild

    Counting checkboxes

    ...And I need it to work in NS6! Thanks Tim
  2. timjwild

    Counting checkboxes

    I've searched through this forum and have seen plenty of discussions on how to check if a checkbox is ...erm checked. My problem is slightly different. I have a page with 100 possible selections from which the user may only select 25. How do I count the number of selected boxes and flag an...
  3. timjwild

    popup - if there's content in a file?

    I'm having a similar problem, given the age and nil responses to simmerdown's post am I to assume there isn't a solution to this? My problem is slightly different in that I only want to display a pop-up if the html file itself exists, at the moment I just get the 404 error.
  4. timjwild

    the display of forms

    I have a countdown javascript function which writes to fields in a form (document.form.field.value=??) but I'd rather not have to display the info in textboxes or at least make the textboxes look less like text boxes. is there any way to do either of these? ie not a textbox or no borders on...
  5. timjwild

    double combo box with window.open

    Using the double combo script at http://wsabstract.com/script/cut183.shtml I have included a window.open command to open the target page in a new window function go(){ URL = temp.options[temp.selectedIndex].value window.open(URL,"newWin"); } works perfectly. I need to know, however...
  6. timjwild

    related drop downs

    I need to create a page which contains 3 dropdown menus. the contents of menu 3 will be dependant on the option chosen in menu 2, the contents of menu 2 will be dependant on the option chosen in menu 1. I've found an example using 2 menus here...
  7. timjwild

    document.write in a <td>

    The navigator.appName isn't actually what I want to display, it was just something to test with. I need to know how to display something, anything using 'document.write' which will be triggered by an onload event. Thanks Tim
  8. timjwild

    document.write in a <td>

    I want to use the following to display the browser info ONLY in the onload function, without writing a new page. If I use the script without 'window.onload' it displays in the current window with it, it creates a new page within the window. Help?. <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML...
  9. timjwild

    Javascript onload and IE4

    I have written the following page and posted it to http://timjwild.50megs.com/test3.html It works as planned in NN and IE5 but not IE4. Is there some obscure reason why IE4 doesn't like my onload event?. <html> <head> <title>test3</title> <script language=&quot;javascript&quot;> var temp...
  10. timjwild

    KeyPress Event

    <html> <head> <title>Untitled</title> <script> function keyPress(evnt) { if (document.layers) theKey = evnt.which; else if (document.all) theKey = event.keyCode; return (String.fromCharCode(theKey)!='a') } </script> </head> <body>...

Part and Inventory Search

Back
Top