> whats the best approach to soft utilize of javascript? (example: picture > slides, a little bit of > ajax, and some form validators? There's a apropriated structure to small > projects? Like backbone?
For small projects jQuery + custom built jQueryUI + few plugins (3rd part or custom, using jQueryUI.Widget as base) should be ok imao. Well-known base and widget library improves maintainability, this is much more important for small projects then size of the code (because nobody cares about architecture in small projects). Also you can take jQuery from Google CDN, so probably it will be taken from cache without downloading. For big projects consider Core-Sandbox-Module approach (http://www.slideshare.net/nzakas/scalable-javascript-application-architecture), in that case base library not so important. -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
