Skip to content

Instantly share code, notes, and snippets.

@koenhendriks
Created September 17, 2013 10:54
Show Gist options
  • Save koenhendriks/6592805 to your computer and use it in GitHub Desktop.
Save koenhendriks/6592805 to your computer and use it in GitHub Desktop.
checkForgotFields(){
var check = false;
var email = $('#email').val();
var securityq = $('#securityq').val();
var securitya = $('#securitya').val();
if(email != '' && securitya != '' && securityq !=''){
check = true;
}
return check;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment