3

Have some div elements on a page that I need to hide by default until a form is submitted and the user redirected back to the same page with a query string appended to the url (?success=true) for example.

Can anyone help here?

0

1 Answer 1

12
$(document).ready(function () {
  $("div.show_on_success").toggle(document.URL.indexOf("success=true") !== -1);
});

This code shows the divs with class show_on_success if "success=true" appears in the page's URL, and hides them otherwise.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.