I'm using jQuery to make somethings after a click on some elements of my page :
$('.news-comment-tablink, #news-comment-count, #fast-travel-sparking').click(function(){
console.log('test');
});
All the three elements are on my page, I see them when analysing my code.
But if I have the 'test' in my console on Firefox on each elements, in Chrome, the 'test' appear only on one of them !
I'm not bad in jQuery, but this time I really don't know what to do...
Can you help ?