Skip to content

Instantly share code, notes, and snippets.

@andyferra
Created November 21, 2008 18:42
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 andyferra/27549 to your computer and use it in GitHub Desktop.
Save andyferra/27549 to your computer and use it in GitHub Desktop.
## In application.js
$(document).ready(function() {
$('table.search_results tbody tr').click(function() {
alert($(this).children('a:first-child').attr('href'));
});
});
## In view.html
<table cellspacing='0' class='search_results' summary=''>
<tr class='odd'>
<td><a href="/discounts/741">Adolphus Hotel, The</a></td>
<td class='currency'>$164.00</td>
</tr>
<tr class='even'>
<td><a href="/discounts/749">Adolphus Hotel, The</a></td>
<td class='currency'>$189.00</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment