How to simulate a click event using jQuery?
Answers
Answered by
0
jQuery 1.3, trigger() ed events bubble up the DOM tree; an event handler can stop the bubbling by returning false from the handler or calling the .stopPropagation() method on the event object passed into the event.
Similar questions