Your current filters are…
In this talk you will learn how the jQuery project is structured, from the jQuery Board to our membership in the Software Freedom Conservancy. We’ll cover the state of jQuery Core, jQuery UI and jQuery Mobile and get a glimpse of what might be coming in the near future. We’ll also look at some of the other projects that are being worked on by the jQuery team.
by Wes Nolte
Our combined jQuery experience over the years has put us in the privileged position of learning which tips - programmatically and otherwise - are most useful to us as a development house. Join us to learn what you can do to improve yourself as a developer with our top 10 jQuery tips.
Traditionally testing on any project is left till last, but even then testing of client-side code is usually overlooked entirely.
With the rise-and-rise of jQuery the world at large is finally recognising that JavaScript is not a second-class citizen.
Web applications the world-round are leveraging JavaScript - and in particular jQuery - to build large scale applications that serve millions. Of course to ensure a high-level of quality and robustness it's necessary to test all this code.
Enter stage left - QUnit.
JavaScript was always the language to make the web more interactive and fill the gaps that browsers had when it comes to interaction with the user.
With jQuery we moved even further and concentrated on that task, replacing the unwieldy native DOM with a simpler way to spice up our web sites. With browsers moving ahead it is time though to reflect and see just how much code we write that actually is not needed any longer as browsers give us native controls in HTML5.
In this talk Chris Heilmann of Mozilla will show just in how many ways modern browsers make it easy for us to offer a rich experience without having to create that on our own. We'll look at UI elements, multimedia capabilities, drawing, animation and how to tie into our user's browsing and web behaviour without forcing a certain path on them.
We have amazing technology to play with, we should use it and look ahead instead of patching for the past.
by Addy Osmani
Developers creating JavaScript applications these days usually use a combination of MVC, modules, widgets and plugins for their architecture. They also use a DOM manipulation library like jQuery.
Whilst this works great for apps that are built at a smaller-scale, what happens when your project really starts to grow?
In this talk, Addy presents an effective set of design patterns for large-scale JavaScript (and jQuery) application architecture that have previously been used at both AOL and Yahoo amongst others.
You'll learn how to keep your application logic truly decoupled, build modules that can exist on their own or be dropped into other projects and future-proof your code in case you need to switch to a different DOM library in the future.
The enemy of maintainable code is extensive configuration and over-declaration – both of which tie your code to specific pages and sections in your application.
Since so much instructional data is described by the HTML of your site, why should you need to redefine it all again in JavaScript?
In this session, learn how to develop clean, responsible jQuery code that responds to its context instead of the traditional, define everything, top-down approach.
This session will cover how event delegation, traversal methods and advanced selectors all work together to let you write more efficient and less wasteful code.