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?

Chris
  • 111
  • 1
  • 3
  • 9

1 Answers1

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.

Emily
  • 5,869
  • 1
  • 22
  • 15