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
d4c5f9 | |
e11d21 | |
eb6420 | |
fbca04 | |
009800 | |
006b75 | |
207de5 | |
0052cc | |
5319e7 |
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
// Filter Row Script | |
// ........................................ | |
$('.sidebar a').on('click', function(e){ | |
e.preventDefault(); | |
var condition = $(this).data('filter'); | |
//get all trs from tbody | |
var trs = $(".main-messaging-content").find("tbody tr"); | |
trs.hide(); |