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 SkipVought 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. Velan07

    making image clickable only once

    When the user click on the image store a boolean value to some hidden text box. if the user click second time check the hidden text box boolean condition. Based on the above validation, you can avoid the second click on the submit button.
  2. Velan07

    how to check for valid currency value in javascript?

    <script language=javascript> var s="1s4"; alert(isCurrency(s)); function isCurrency(pInput) { var re = /^\$?[0123456789\.-]+$/; return re.test(pInput); } </script>

Part and Inventory Search

Back
Top