Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show / Hide elements based on query string value

Tags:

jquery

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?

like image 462
Chris Avatar asked May 19 '26 19:05

Chris


1 Answers

$(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.

like image 144
Emily Avatar answered May 22 '26 13:05

Emily



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!