//prevent the double submit using jquery
function preventDoubleSubmit(elementId){
$(elementId).bind('click',function(e){
e.preventDefault();
})
}
function preventDoubleSubmit(elementId){
$(elementId).bind('click',function(e){
e.preventDefault();
})
}
No comments:
Post a Comment