Today I explored something weird: jQuery Address do not work in jQuery callbacks:
http://jsfiddle.net/Wh7uS/19/
Any suggestions?
Today I explored something weird: jQuery Address do not work in jQuery callbacks: http://jsfiddle.net/Wh7uS/19/
Share
Your binding to the init event of the address, which is triggered before the callback.
You can see that if you change the fadein timer to 0:
It’s callback will run immediately, binding the init event handler which will be invoked and shoot of the alert (all from in the callback). Timing is everything 🙂