Disable button on click submit, and redirect instead of ajax
-
Hello there is any possibility to :
1) when user click submit, the button become disabled ? indicator for the user that the comment is sending (cz my server is slow)Itried this one, but the comment is not sending anymore,
<script> jQuery(document).ready(function ($) { jQuery('#commentform input#submit').click(function(e){ jQuery(this).prop('disabled', true); jQuery(this).val("Please Wait"); }); }); </script>
2) any possibility to redirect the page and add parameter “?anticache” to remove cache in this page ?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Disable button on click submit, and redirect instead of ajax’ is closed to new replies.