I got TypeError: b is undefined in my web app. I included latest version jquery and i check same id is exist.
jQuery(document).ready(function ($) {
$('#instantquotebtn').on('click', function() {
if($("#instantquotefrm").validate()){
alert("Validation OK");
}
});
});