I am making a Firefox extension to determine when a "storage" event is fired from the localStorage.
In Firefox 3, I have this line to bind the storage event in the window to a function in the extension.
$(doc, doc).bind('storage', on_store());
This works in Firefox 3. However, this does not seem to get the event when it is tried in Firefox 4.
addEventListener, just to see if maybe Firefox 4 changed something that makes it harder to use JQuery in an extension? – MatrixFrog Jan 19 '11 at 3:37on_store()and noton_store? Doeson_store()return a function? – Tgr Feb 27 '11 at 15:14