Skip to content

Instantly share code, notes, and snippets.

@bradrobertson
Last active December 20, 2015 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradrobertson/6177412 to your computer and use it in GitHub Desktop.
Save bradrobertson/6177412 to your computer and use it in GitHub Desktop.
jquery live example
# /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