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 strongm 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. jaysolomon

    Hiding div from <select> option

    Mr3Putt You are correct i got in a hurry <html> <head> <title></title> <script type="text/javascript"> <!-- function showDets(obj){ var selForm = document.insert; var selChoice = selForm.dt.options.[selForm.dt.selectedIndex].value; var oId = document.getElementById(obj); if(selChoice ==...
  2. jaysolomon

    Validate form fields for specific values ( not a range)

    do not use onblur use onchange onblur is very annoying all form validation should be done in the form tag using onsubmit jAy
  3. jaysolomon

    Hiding div from &lt;select&gt; option

    <html> <head> <title></title> <script type="text/javascript"> <!-- function showDets(obj){ var selForm = document.insert; var selChoice = selForm.dt.options.[selForm.dt.selectedIndex].value; var oId = document.getElementById(obj); if(selChoice == "GN" || selChoice =="SB"){ oId.style.display...
  4. jaysolomon

    Email Validate Filter

    First: if (theForm.email.value == "") will allow all spaces so i changed it to if(theForm.email.value.split(" ").join("") == "") to take care of them [code] <html> <head> <title></title> <script type="text/javascript"> <!-- function FormValidator(theForm) { if (theForm.email.value.split("...

Part and Inventory Search

Back
Top