I'm using Bootstrap table (http://wenzhixin.net.cn/p/bootstrap-table/docs/index.html)
I'm trying to add click event
$('tr').click(function(){ console.log('test'); });
but it doesn't work. I know that there is event in bootstrap-table library, but it's important for me to use it exactly with jQuery's .click. Do you know what is blocking this event in bootstrap-table source code? I tryied to remove all ".off"s from bootstrap-table.js, but it didn't help.