groups

name language licence
Clear CSS Other
Connessione DB PHP Other
dimensioni effettive di un Div JavaScript Other
Check Email JavaScript Other
@import CSS Other
Require the www Apache Other
Block access to files during certain hours of the day Apache Other
I Love Typography CSS Other

< 1 2 >



language: JavaScript
licence: Other

Check Email

options: view full snippetsend to code collector
function checkemail(str){
	var testresults;
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if (filter.test(str)){
		testresults=true;
	}else{
		testresults=false;
	}
	return (testresults)
  }
	
(Continues...)