Here's a situation - i have an one-page web app with different sections and i load them asynchrously. And while im loading them in init method i delegate events with jQuery to a parent container.
Here's a question:
When that section is not displayed, should i off my event delegation and set them on only when section is displayed or is it better to set them on only once.
Im not concern with crosses and other nasty stuff. I delegate it only once now and have none of those problems. Im concern with performance when app is gonna scale. Has anyone knows?