Skip to content

Instantly share code, notes, and snippets.

@smsohan
Created January 23, 2012 04:08
Show Gist options
  • Save smsohan/1660524 to your computer and use it in GitHub Desktop.
Save smsohan/1660524 to your computer and use it in GitHub Desktop.
//HTML
<% products.each do |product| %>
<div class="product" data-id="<%= product.id %>">
<%= link_to_image product.thumbnail, product %>
<%= product.name %>
...
</div>
<% end %>
//JS
$('.div.product').click(showScreenshots)
showScreenshots = function(){
selectedProductId = this.dataset.id
//load the screenshots for the product with id = selectedProductId
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment