Last active
May 21, 2016 11:10
-
-
Save jpdevries/d516ba8f0abb40ab292d to your computer and use it in GitHub Desktop.
settings-table for old browsers
This file contains 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
$('.settings-table').each(function(){ | |
$(this).on('focusin click','tbody > tr:not(.setting-form)',function(e){ | |
$(this).addClass('open').siblings('.open').removeClass('open'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment