Last active
December 20, 2015 18:39
-
-
Save bradrobertson/6177412 to your computer and use it in GitHub Desktop.
jquery live example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /app/views/contacts/index.html.erb | |
<div class="contacts"> | |
<div class="contact" id="contact_1"> | |
<p class='name'>Cool Dude 1</p> | |
<div class="details">...</div> | |
</div> | |
<div class="contact" id="contact_2"> | |
<p class='name'>Cool Dude 2</p> | |
<div class="details">...</div> | |
</div> | |
... | |
</div> | |
<script> | |
$(function(){ | |
$(".contact").live('click', function(){ | |
$(this).find('.details').toggle(); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment