Skip to content

Instantly share code, notes, and snippets.

@NZKoz
Created September 1, 2010 20:57
Show Gist options
  • Select an option

  • Save NZKoz/561358 to your computer and use it in GitHub Desktop.

Select an option

Save NZKoz/561358 to your computer and use it in GitHub Desktop.
<ul>
<% @users.each do |user| %>
<li><%= link_to user.name, user %></li>
<% end %>
</ul>
<script>
jQuery(function($) {
$("a").click(function(event) {
event.preventDefault();
alert("plz indent me");
})
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment