Created
April 7, 2016 20:39
-
-
Save stevenschobert/e5cbce748b5444ef3c339a570d66e242 to your computer and use it in GitHub Desktop.
Shortcut to link table rows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function() { | |
| $("table tr[data-table-link]").each(function() { | |
| $(this).css("cursor", "pointer").click(function() { | |
| window.location = $(this).data("tableLink"); | |
| }); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment