Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I believe the less handlers binded is always better. Although, if you have only a few of them binding them forever is not a big deal – Alexander Feb 15 at 7:49
I thought so too. But like i said, i develop a pattern and a code convention for my app, and it would be sad to crash into wall of bad performance later on the way. It is my responsibility to avoid that wall. – user1929437 Feb 15 at 8:50
I don't think you can predict against all possible outcomes. If you are not currently mixing event handling with and without event delegation then you already have a problem. Being honest, your responsibility should be making the change of perspective from what you are using now to something else as less painful as possible because everyone will eventually bump into a wall – Alexander Feb 15 at 9:55
"Im concern with performance when app is gonna scale", we dont know the code , it's up to you to benchmark our app performances. – mpm Feb 15 at 10:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.