Skip to content

Commit

Permalink
changed innerText to textContent
Browse files Browse the repository at this point in the history
  • Loading branch information
fasseg committed Mar 19, 2013
1 parent dacfae4 commit fc798d4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -54,7 +54,7 @@
});

$('#results').delegate('tbody > tr > td', 'click', function () {
record_id = $(this).parent().children()[0].innerText;
record_id = $(this).parent().children()[0].textContent;
window.location = 'details.html?id=' + record_id;
});
});
Expand Down

0 comments on commit fc798d4

Please sign in to comment.