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. aselden

    Javascript validation with html radiobuttons

    Yes, i corrected that part, and whops. Used to html tags!
  2. aselden

    Javascript validation with html radiobuttons

    Solved my problem! Thank you for the help! For others with the same problem: <code> <html> <head> <script type="text/javascript"> function validateForm() { if(document.getElementById('test').checked!=true) { alert("Permission must be given."); return false; } } </script> </head>...
  3. aselden

    Javascript validation with html radiobuttons

    Thank you for the help Vacunita, unfortionatly i still cannot get this to work, after applying your code it still jumps straight to the form's action. Must i fetch the radiobuttons as an array or something like that?Been working this for a while now so any pointers are welcome! Quite new to...
  4. aselden

    Javascript validation with html radiobuttons

    Hello! I was hoping someone would be able to give me some pointers with a problem of mine. My code does not return true even when the the correct radiobutton is checked. Any help is appreciated! <html> <head> <script type="text/javascript"> function validateForm() { var...

Part and Inventory Search

Back
Top