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?
$(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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With