Hello,
I have an event ('show' & 'click') bounded to the element to make it scrollable using the jquery '.on' method but when I try to bind another event on click like below the alert does not show up -
$('.elem').on('show', function(){//some code here}).on('click', function(){alert($(this).text())});
what I am actually trying to do is, leave this 'tr' hidden initially and while pn click of it make it visible.
But its not happening clearly.Thank you