Open GoogleCodeExporter opened 9 years ago
I should have added that this is a tabbed panel with local divs. I'm not using
remote divs.
Original comment by roger.va...@googlemail.com
on 22 Sep 2011 at 12:45
Original comment by johgep
on 27 Sep 2011 at 7:47
Having the exact same problem. Sounds like a simple fix by adding the on*
handler to the anchor tag. This is a pretty serious bug for a project I'm
working on. Any estimate on a fix we could download? Or, in the interim, any
suggestions on how to bind an event handler to the anchor tag?
I cannot figure out how to do so using JQuery since this is dynamically
created. So far, I've tried the following without any success in Firefox 6.0.2.
$("#panelTabs > ul").children( "li" ).delegate( "a", "click", function() {
alert( "Here's some information." ); } );
$("#panelTabs > ul > li").delegate( "a", "click", function() { alert( "Here's
some information." ); } );
$("#panelTabs > ul").children( "li" ).live( "a", "click", function() { alert(
"Here's some information." ); } );
Original comment by texastai...@gmail.com
on 30 Sep 2011 at 11:37
Original issue reported on code.google.com by
roger.va...@googlemail.com
on 22 Sep 2011 at 11:29