Problems with livequery and rte on firefox 3.5.2

I used the following code for some time, and it worked fine on ie6-8 and firefox 3.

$("#article").livequery(function () { $("#article").rte({ cssUrl: "css/rte.css", mediaUrl: "css/rte/", listenToClass: "send"}); }); 

but now that I have upgraded to firefox 3.5.2, it enters an infinite loop by adding rte boxes. can this be implemented for the code itself or incompatibility with the new firefox?

+4
source share
1 answer

Jquery live has replaced livequery for quite some time. Starting with version 1.4.

The latest version of jquery 1.7 + .on () is now the recommended function for delegating events.

I'm not sure which event you are trying to bind in your example, but I would look at .on or .live () or .delegate () if you are using an earlier version.

0
source

All Articles