Skip to content

Instantly share code, notes, and snippets.

@NeilHanlon
Created March 14, 2012 19:54
Show Gist options
  • Save NeilHanlon/2039043 to your computer and use it in GitHub Desktop.
Save NeilHanlon/2039043 to your computer and use it in GitHub Desktop.
$("table tbody tr").each(function(){
console.log('test');
$(this).click(function(){
console.log('isthisthingon?');
var url = '<?=site_url('find/edit/')?>' + '/' + $(this).attr('data');
window.location = url;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment