Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

age validation jquery

var day = 12;
var month = 12;
var year = 2006;
var age = 18;
var setDate = new Date(year + age, month - 1, day);
var currdate = new Date();

if (currdate >= setDate) {
  // you are above 18
  alert("above 18");
} else {
  alert("below 18");
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #age #validation #jquery
ADD COMMENT
Topic
Name
7+5 =