My basic issue is that I have a click event that i have attach to my container, i am trying to delgate that click event just to the buttons in that container. All of that is easy, the issue i have is the event.target in webkit is hitting the spans in the button instead of the button its self. How do i stop the click event from bubbling down wards to the span in the button. I want my targ to be the butto. here is a quick demo showing the issue fiddle of the issue
Share
I have no idea if it is possible to disable event bubbling is this case.
However in these cases I make a inverted event bubbling:
Fiddle: http://jsfiddle.net/jVeMw/1/
Is not perfect for performance but since you are restricting the click event to the
vidCommentBoarddiv it should not be a problem.