jquery - Need to intercept click on page but not specific a tag with id -
i need intercept click on every element in page (a, img, link, etc) not specific a tag specific id (go-privacy).
in detail code, :not jquery doesn't match.
$('html').on('click', '*:not( #go-privacy )', function() { // stuff }); thank you
Comments
Post a Comment