jQuery Conference 2010: Boston – Confirmed Speakers

Posted on by

I’d like to announce the confirmed speakers for the jQuery Conference 2010: Boston.

Speaker name and their accepted talk title:

  • Chad Pytel –  Mobile Web Applications with jQuery
  • Mike Taylor –  Is these a bug?, or how to contribute to the jQuery project through  better bug reporting.
  • Garann Means –  Using templates to achieve awesomer architecture
  • Chris Bannon – Theming jQuery UI like an Aristocrat
  • Alex Sexton –  jQuery’s Best Friends
  • Dave Artz –  jQuery in the [AOL] Enterprise
  • Yehuda Katz – Moving to jQuery
  • Doug Neiner –  Contextual jQuery
  • Scott González – Building Extensible Widgets
  • Mike Hostetler – jQuery(‘#knowledge’).appendTo(‘#you’); [Introduction to jQuery]
  • Karl Swedberg – jQuery Effects: Beyond the Basics
  • Jonathan Sharp –  App in a Browser
  • Rey Bango & Ralph Whitbeck – Getting involved!
  • Paul Irish – Inaugural State of HTML5
  • John “unscriptable”  Hann & Brian Cavalier – OOCSS for JavaScript Pirates
  • Brian Moschel – A Crash Course in JavaScript Application  Testing with FuncUnit
  • Rebecca Murphey –  Beyond the DOM: Functionality-Focused Code Organization
  • Thomas Reynolds –  Organizing Code with JavascriptMVC 3
  • Boaz Sender –  Exploding the internet with jQuery and CouchDB
  • Ben Vinegar –  Building Distributed JavaScript Widgets with jQuery
  • Menno van Slooten – Rapid testing, rapid development –  Increase your development speed by reducing your feedback loops
  • Brian Crescimanno – jQueryUI and HTML5 Video Play Nice
  • Paul Elliott –  TDD Your jQuery Plugin
  • Elijah Manor – Introduction to jQuery UI

Update Just confirmed:

  • Matt Kelly – Super Awesome Interactions with jQuery

As always the keynotes for the conference will be given by:

  • Richard D. Worth – jQuery UI
  • John Resig – jQuery Core & jQuery Mobile

We’ll be updating the events site soon with speaker bios, talk abstracts and the schedule for Saturday, October 16th and Sunday, October 17th.  So look for that soon.

Again, you can register for the conference at http://events.jquery.org/2010/boston/register/

Don’t forget that we are also again offering a full day of training to jump start your jQuery skills at the Bocoup Loft.  You can register for the training class on the same page as the conference registration (just scroll down).

Hope to see you there!

The Official jQuery Podcast has a New Home

Posted on by

Today, we’d like to announce that we’ve moved the Official jQuery Podcast off the jQuery blog and onto it’s own site at http://podcast.jquery.com.

We felt that with a weekly blog post for each episodes show notes the podcast was taking over the blog.  Some of the community members thought the same way.  We’ve been working on porting over the existing posts and making the new podcast site easier to use for our listeners.

Each episodes show-notes are now streamlined to give you a quick introduction about what the show is about followed by all the links that were mentioned in the show.  We also have the ability to play the show from the post with an embedded player as well as easy links to download and subscribe.

We also have a easy contact form that will allow you to contact the podcast directly.

We’ve cleaned up the jQuery blog and removed the old show notes and put in place URL redirects so old urls will still go to the right post on the new site. While we are talking about the blog, we’d like to know what would you like to see more of on the jQuery blog?  Currently we’ve been using the blog to post news about the project and upcoming events.  What else can we post to help you out?  We’d love to hear your ideas.

Special thanks goes out to Doug Neiner for helping out with design and coding, also, would like to thank Jonathan Sharp for setting up the site and getting the URL redirects in place.

Let us know what you think of the new podcast site and don’t forget to keep listening to the show.

jQuery Conference 2010: Boston Announcement

Posted on by


The jQuery Project is very excited to announce the jQuery Conference 2010: Boston on October 16-17, 2010.  The conference will be held at the Hilton Boston Logan in Boston, Massachusetts.  The best part of this announcement is that Tickets are on sale now!

This venue is the largest that the project has worked with to date (Harvard Law School in ‘07, the MIT Stata Center in ‘08 and Microsoft New England Research Center in ‘09) and we expect to sell out very quickly.

A brief synopsis of some of the content that you’ll be able to expect:

  • jQuery
  • jQuery Mobile
  • jQuery UI
  • jQuery Plugins
  • Complex Application Development
  • jQuery Case Studies
  • Plus much more

Speakers currently include jQuery Team Members:

We are still accepting speaker submissions for Boston, so please submit your proposed talk today! Deadlines for submissions is September 6, 2010 at 11:59PM PST.

In addition to two days of jQuery sessions, we’ll once again be offering a full day of jQuery Training prior to the event.  The jQuery Training will be offered by Bocoup and will be hosted at the Bocoup Loft. The training will cover the following topics:

  • What is jQuery?
  • What is the DOM?
  • jQuery and Selectors
  • jQuery and Methods
  • Get stuff do something: DOM traversal and manipulation
  • jQuery and Events
  • jQuery and AJAX
  • jQuery and Effects
  • Using plugins
  • jQuery UI and the widget factory
  • Debugging techniques with jQuery

Tickets for the jQuery Boston Training may be purchased on the Training Events Page.

Check out the jQuery Conference 2010: Boston event site for up-to-date information.

The jQuery Project is Proud to Announce the jQuery Mobile Project

Posted on by

Mobile web development is an emerging hot topic in the web development community. As such, the jQuery Team has been hard at work on determining the strategy and direction that the jQuery Project will take. Today, we are proud to announce the jQuery Mobile Project. We’ve launched a new site at jquerymobile.com that publicly outlines our strategy, research and UI designs.

As always, we want to hear from you.  We’ve created a new Mobile jQuery forum to collect feedback from the community.  Please feel free to join in on the discussion and read more in the announcement.

jQuery London 2010 Postponed

Posted on by

After much deliberation, The jQuery Project Operations Team has decided to postpone our planned London event this year.  Unfortunately, we were unable to secure a suitable venue that would allow us to provide the type of professional-quality event the community has come to expect within a budget sustainable by the project.  We regret any inconvenience this may have caused and are actively working on planning a European event for 2011.

Seattle jQuery Open Space and Hack Attack with John Resig – July 5th

Posted on by

On Monday, July 5th, John Resig will be at the Seattle jQuery/JavaScript community meetup at Amazon’s brand new Van Vorst Meeting Center in South Lake Union for an afternoon of learning, openspace, hacking and, of course, pizza!

The fun begins at 1pm with a quick keynote and explanation of open space technology then the group will self organize into smaller sessions run in an open space style until 6pm.

There will be plenty of pizza, refreshments and networking space to meet like minded developers, so come and meet, eat, learn and play with some of the Pacific Northwest’s best front end and interface developers. Topics will be suitable for beginners all the way through to advanced jQuery and JavaScript programmers.

This awesome event is provided for free and but you need to register to get in. Be sure to get your ticket quick.

Microsoft’s Proposal for Data Linking in jQuery. Feedback Requested.

Posted on by

Microsoft has submitted it’s second proposal to the jQuery Project outlining a plugin that allows properties within objects to be linked to each other. Termed “data linking”, the new plugin would allow changes made to a property of one object to effect a change on the property of a secondary object. The plugin leverages jQuery’s “special events” API to create a new event that will trigger when a change occurs on a bound object property. This would allow a developer to link properties in the following way:

var person = {};

$(“#name”).linkTo(“val”, person, “name”);

$(“#name”).val(“foo”);

alert(person.name); // foo

// … user changes value …
alert(person.name); // user typed value

The proposal has been submitted via the jQuery forums and Microsoft is actively soliciting community feedback:

http://forum.jquery.com/topic/proposal-for-adding-data-linking-to-jquery

A prototype of the data linking is available for review via Github:

http://github.com/nje/jquery-datalink

We’re pleased to see Microsoft’s continued contribution to our open source community and ask that you provide feedback in guiding this effort along.

jQuery Conference 2010: San Francisco Bay Area Speakers/Schedule Announced!

Posted on by

The jQuery Project is very excited to announce the final schedule and speakers list for our first-ever San Francisco Bay Area conference. The conference will be held at the Microsoft Silicon Valley Research Center in Mountain View, California on April 24th and 25th, 2010.

Speakers include: John Resig, Scott González, Steve Souders, Nicholas Zakas, John Nunmaker and most of the jQuery team to name a few.

Registration for the jQuery Conference 2010: San Francisco Bay Area is still open! You still have a chance to register for this great event!

Get your ticket today.

A brief synopsis of some of the content that you’ll be able to expect:

  • jQuery
  • jQuery UI
  • jQuery Plugins
  • Complex Application Development
  • jQuery Case Studies

In addition to two days of jQuery sessions, for the first time we’ll be adding an additional day of jQuery training, prior to the main event. The training will be provided by appendTo and focused on helping you and your team get up to speed on jQuery prior to attending the conference. The training will cover the following topics:

  • Introduction to jQuery
  • Finding Something
  • Doing Something With It
  • Chaining
  • Introduction to jQuery UI
  • Implementing jQuery UI Widgets

The training will be held on April 23rd at the Microsoft San Francisco offices in downtown San Francisco; tickets will cost $299. All proceeds from training go to the jQuery Project.

Get your ticket today.