Skip to content

Instantly share code, notes, and snippets.

@reachkamrul
Created August 20, 2020 13:16
Show Gist options
  • Save reachkamrul/565fa851700c782b28e10498fe39c8de to your computer and use it in GitHub Desktop.
Save reachkamrul/565fa851700c782b28e10498fe39c8de to your computer and use it in GitHub Desktop.
function runAll(){
$(document).on('click', 'tbody tr', function(e){
e.preventDefault();
var url = $(this).find('a').attr('href');
if(url != ""){
window.open(url, '_blank');
}
});
}
runAll();
$table.on('after.ft.paging', function () {
runAll();
});
$table.on("after.ft.filtering", function () {
runAll();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment