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.

link|improve this question

64% accept rate
Did you try using a non-JQuery method like 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:37
Why on_store() and not on_store? Does on_store() return a function? – Tgr Feb 27 '11 at 15:14
feedback

1 Answer

The spec seems to suggest the storage event will fire on the window (so $(window).bind('storage', on_store) is the correct way to bind it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.