I have a ASP updatepanel, within that panel I have some controls which got jQuery effects connected to them.
The effects work perfect before posback, after postback the effects only work in IE not in FF. To get it working in IE I added the following to my MasterPage:
function pageLoad(sender, args)
{
// Initialize jQuery effects.
}
With this code it works in IE but bot in FF, anyone got an answer to this one?