You are viewing limited content. For full access, please sign in.

Question

Question

disable and hide the submit button permanently on a form

asked on June 30, 2020

Simple javascript to permanently disable and hide the submit button on a form. I am trying to create a landing page for links only.

0 0

Replies

replied on June 30, 2020

JS would be:

$('document').ready(function(){
   $('.Submit').hide();
});

Alternatively, CSS would be:

.Submit{
  display: none;
}

 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.