Questions tagged [stoppropagation]

stopPropagation is a method of the event object that prevents further propagation of the current event.

stopPropagation is a method of the event object that prevents further propagation of the current event. This prevents ancestors of the current node from receiving the event.

392 questions
-1
votes
1 answer

How would I hide an element when one is clicked, and show the hidden element when the other element is clicked off of?

I have two classes: .dropdown-toggle and .link_row ul What I want to do is, when the user clicks on the .dropdown-toggle, I want the .link_row ul to be set to not be displayed. When the user clicks off of the .dropdown-toggle, I want the…
Chris
  • 233
  • 2
  • 5
  • 14
-1
votes
1 answer

jquery parent child click event handling

I have a table row with 2 columns that I add dynamically (below). var lientry=' blah blah '+'click for more'; I have a click handler for the first…
1 2 3
26
27