I have multiple classes on a page of the same name. I then have a .click() event in my JS. What I want to happen is the click event only happen once, regardless of multiple classes on my page.
The scenario is that I am using AJAX to add to cart. Sometimes on the home page there might be a featured product and a top offer which means that the same class .add .#productid# is there and when clicked the add to cart AJAX is fired twice.
I thought about making 'click areas' so I would have .container-name .add .#pid# therefore giving unique clicks.
Is this the only solution?
<div class="addproduct 151">product info</div>
<div class="addproduct 151">product info</div>
<div class="addproduct 151">product info</div>
<div class="addproduct 151">product info</div>
<div class="addproduct 151">product info</div>
$(".addproduct").click(function(){//do something fired 5 times});
Apologies for bumping this old thread. I had the same problem right now, and I wanted to share my solution.
event.StopPropagation
andevent.StopImmediatePropagation()
should do the trick.Having a .class selector for Event handler will result in
bubbling
of click event (sometimes to Parent element, sometimes to Children elements in DOM).event.StopPropagation()
method ensures that event doesn't bubble to Parent elements, whileevent.StopImmediatePropagation()
method ensures that event doesn't bubble to Children elements of desired class selector.Sources: https://api.jquery.com/event.stoppropagation/ https://api.jquery.com/event.stopimmediatepropagation/
Could we see your click handler? You're attaching 5 listeners to 5 different elements. However, when the user clicks on the element, only one event is fired.
If this solution doesn't work I'd like to look at your click handler.
I tried it myself in my project.
All my rows in a table have a class "contact":
My code looks like this:
And I was first scared to see my whole rows as a result in the Firebug console when I executed the code:
But then I realized that the click event was not fired, because no alert-dialog appeared. Firebug shows you just the elements which are affected by the click overiding. So there is nothing to worry.