Validate date for anyone over 18 with jQuery

前端 未结 6 2084
借酒劲吻你
借酒劲吻你 2021-01-18 03:07

I have a form on my site that should validate for anyone who is over 18.

var day = $(\"#dobDay\").val();
var month = $(\"#dobMonth\").val();
var year = $(\"         


        
6条回答
  •  北海茫月
    2021-01-18 03:54

    if it's working the opposite way have you tried swapping the > for a < on the second to last line?

提交回复
热议问题