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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CrazyRabbitMan

  1. CrazyRabbitMan

    Beefing up my Email validation

    So... Flogging through this wasn't as bad as I thought. If you change: var asci3=afterat.charCodeAt(j); if((asci3<=44) || (asci3==46) || (asci3==47) || (asci3>=58 && asci3<=96) || (asci3>=123 && asci3<=127)) to: var asci3=afterat.charCodeAt(j); if((asci3<=44) ||...
  2. CrazyRabbitMan

    Beefing up my Email validation

    I am working on an email validation field. I specialize in php, but have found a fairly impressive and inclusive javascript that works wonders. The only thing wrong, is that it does not accept compound domain names after the "@", ex: email.arizona.edu. The two .'s trigger the false alert. I...

Part and Inventory Search

Back
Top