Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Disabling submit button after clicking to avoid multiple posts


modemlooper
Moderator

@modemlooper

You can use jquery. This is just an example.

jQuery(‘input:submit’).click(function(){
jQuery(‘input:submit’).attr(“disabled”, true);
});

Skip to toolbar