Issue
Here's an example of an alert I'm using:
<div class="alert alert-error" id="passwordsNoMatchRegister">
<span>
<p>Looks like the passwords you entered don't match!</p>
</span>
</div>
I know that $(".alert").show() and $(".alert").hide() will show/hide all the elements of the .alert class. However, I cannot figure out how to hide a specific alert, given its id.
I want to avoid using .alert("close"), since that permanently removes the alert, and I need to be able to recall it.
Solution
You need to use an id selector:
//show
$('#passwordsNoMatchRegister').show();
//hide
$('#passwordsNoMatchRegister').hide();
# is an id selector and passwordsNoMatchRegister is the id of the div.
Answered By - bipen
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.