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 Wanet Telecoms Ltd 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. wallflower

    form date less than todays date

    MMYY instead of this, if its four characters long, I want to take the fist 2 characters and set them to M and the last two and set them to Y // split the date string into m d y tokens var arDate = sDate.split("/"); var M = arDate[0]; var D = arDate[1]; var Y =...
  2. wallflower

    form date less than todays date

    ok, that javascript rocks. I used it on another form. Thanks. But..... let me be more specific and see if i can make this a little harder. the expire date is formatted mmyy in your above code, I call final_submit() as an Onsubmit in the <form> tag?
  3. wallflower

    form date less than todays date

    I want something like <script language=&quot;javascript&quot;> function final_submit() if( document.signup_form.CARD_EXPIRE.value == &quot;&quot; ) { alert( &quot;Please enter a valid date&quot; ); return false; } return true; </script> To check a form date before it gets swept off by the...
  4. wallflower

    perl date check

    I need a little help. i need to stick a simple &quot;experation date&quot; is less than &quot;today date&quot; perl on an already existing .pl. IF variable is less that today, do nothing, if its greater, I'll redirect them. I know, I know, its probably super simple and I just need to learn...

Part and Inventory Search

Back
Top