Is there a way to find all the elements that can be clicked using the click () or live ('click) button?
I want to perform some actions if any of these elements are clicked.
$('.container').bind('click', function(event) {
This object catches all clicks.
Thanks.
source share