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

Question

Question

To hide a section after clicking the submit button via JavaScript or CSS

asked on April 28, 2015

I am looking to hide a section of a form after the user clicking the submit button.  This is to prevent Forms from saving repetitive information to Laserfiche as TIFF pages.

 

This is what I currently have, but it doesn't seems to be working.  Do I need to specify ".submit" somewhere else? Thanks.

 

$('#q27 .collapsible').trigger('click');

0 0

Answer

SELECTED ANSWER
replied on April 28, 2015 Show version history

You can try this:

$(document).ready(function(){
    $(".action-btn").click(function(){
    $("#q27").hide();
});
});

 

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.