I'm going crazy. I have a series of divs that have click events bound to them. Most of them work as expected, but a few of them just do nothing. There is no difference in the code between them (whether in the javascript that produces them or the resulting HTML I see in the element inspector). They all work in Safari, but in Chrome I get this sometimes-fail. In the code below, even the "PLAY" is never written to the console.
It's hard to share the code because it's part of such a larger thing, but it basically looks like the following. First some HTML that gets written into the document from javascript:
<div class='thumbnail' id='p-"+ip+"'></div>
Which results in something like:
<div class='thumbnail' id='p-220'></div>
I then bind a click() onto it, like this:
playHandler(ip);
function playHandler(ip) {
$("#p-"+ip).click(function()
console.log("PLAY");
popTranscription.listen("canplayall",function() { this.currentTime(ip) });
popTranscription.play();
cued = true;
});
}
Most of the time a click on the div fires the bound function. Sometimes not. It's always the same specific thumbnail class divs that don't work (e.g. I have a long list of these in a document, each distinguished by that 'ip' variable. i.e. ip 1, 2, 3 would always work, while 4 would always not work).
I'm sorry I don't have more to show, but does anyone have any ideas on what to look for? I'm losing it. I've tried using bind() instead of click(). I tried onclick instead of jquery, but that gives me strange inconsistent behavior as well (sometimes it finds the function, sometimes not).
UPDATE: the problem was related to duplicate IDs existing on the page. I added some unique identifiers to the ID strings and the problem cleared up. thanks for the lead!
playHandler()once perip? Or do you call it whenever you want to click the element? – Jonathan Sampson May 14 '12 at 2:54idover and over, are you? Is this page online? – Jonathan Sampson May 14 '12 at 2:57<div>s with the sameidattribute, that's a specific type of invalid HTML that will cause confusing things to happen. – mu is too short May 14 '12 at 3:04idattributes in one page and expect things to work properly, which one anidselector matches is implementation defined. – mu is too short May 14 '12 at 3:23