Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jquery plug-in to prevent double click on form submit Reply To: jquery plug-in to prevent double click on form submit

#148570
f_aziizii
Participant

$(‘form’).submit(function () {
$(‘:submit’, this).click(function () {
return false;
});
});