Skip to content

Instantly share code, notes, and snippets.

@jcypret
Created July 27, 2012 03:29
Show Gist options
  • Save jcypret/3186044 to your computer and use it in GitHub Desktop.
Save jcypret/3186044 to your computer and use it in GitHub Desktop.
Clickable Tablerow
$('tr.clickable').on 'click', ->
document.location.href = $(this).data('url')
.clickable {
cursor: pointer;
}
<tr class="clickable" data-url="http://example.com">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment