Hey guys,
I'm using jQuery 1.3.2 and Live Query plugin. The script needs to work in FF as well as IE6. Upgrading jQuery and using live instead isn't a possibility.
Somehow this script won't be called by the dynamically created element.
$('select').livequery('change',function(){
var select_id = $(this).attr("id"); ...
...
...
});
$('select').livequery('mouseover',hideExtensions());
function hideExtensions(){
...
...
}
In both IE6 and FF, the function is correctly called by the static (already existing) elements. However, it's not being called by the dynamically created element.
What could be the reason?
Update I tested the same function with "live". It worked in FF, but not in IE6, of course not... That's why i'm looking for a workaround with livequery.