17
Boston IxDA - Sept 2008 John Resig (ejohn.org)

jQuery - Boston IxDA

  • Upload
    jeresig

  • View
    9.314

  • Download
    2

Embed Size (px)

DESCRIPTION

A talk that I gave Sept 2008 for the Boston IxDA on jQuery. Code is here: http://ejohn.org/apps/learn-jquery/ Download here: http://ejohn.org/files/learn-jquery.zip

Citation preview

Page 1: jQuery - Boston IxDA

Boston IxDA - Sept 2008John Resig (ejohn.org)

Page 2: jQuery - Boston IxDA

What is jQuery?✦ An open source JavaScript library that

simplifies the interaction between HTML and JavaScript.

Page 3: jQuery - Boston IxDA

Ideal for Prototyping✦ Completely unobtrusive✦ Uses CSS to layer functionality✦ Easy to separate behavior✦ Quick, terse, syntax

Page 4: jQuery - Boston IxDA

The Focus of jQuery

Find Some Elements

$(“div”).addClass(“special”);Do something with them{ {

jQuery Object

Page 5: jQuery - Boston IxDA

Plugins✦ Huge plugin ecosystem✦ Managed by Plugin tracker

http://plugins.jquery.com/✦ Hundreds in the tracker - even more on

the web

Page 6: jQuery - Boston IxDA

jQuery Plugins✦ Extend the jQuery system✦ Add on extra methods:

jQuery(“div”).hideRemove();✦ Trivial to implement:

jQuery.fn.hideRemove = function(speed){ return this.hide(speed, function(){ jQuery(this).remove(); });};

Page 7: jQuery - Boston IxDA

Todo Listhttp://jquery.com/files/todo/

http://jquery.com/files/todo/done.php

Page 8: jQuery - Boston IxDA

jQuery UI✦ A complete set of themed, cross-browser,

user interface components.✦ Drag, Drop, Sort, Select, Resize✦ Accordion, Datepicker, Dialog, Slider, Tabs✦ More info:

http://docs.jquery.com/UI✦ 1.6 is in beta right now

Page 9: jQuery - Boston IxDA

Accessibility✦ Keyboard Accessible✦ Screenreader Accessible✦ Grant from Mozilla Foundation to

implement ARIA

Page 10: jQuery - Boston IxDA

Support✦ Liferay (Java CMS) hired Paul Bakaus,

jQuery UI lead to work on it full time.✦ More support on the way!

Page 11: jQuery - Boston IxDA

Themeroller

Page 12: jQuery - Boston IxDA

✦ Fully documented✦ Great community✦ Tons of plugins✦ Small size (15kb)✦ Everything works in IE 6+, Firefox,

Safari 2+, and Opera 9+

Why jQuery?

Page 13: jQuery - Boston IxDA

Who uses jQuery?✦ Projects:

✦ Wordpress, Drupal, CakePHP, Textpattern, Mozilla

✦ Companies:✦ Google, IBM, Amazon, Digg, Netflix,

Dell, HP, Bank of America, Intel...✦ NBC, CBS, BBC, Reuters, Newsweek,

Boston Globe, and more ✦ many others...

Page 14: jQuery - Boston IxDA

✦ Very active mailing list✦ 100+ Posts/Day✦ 6000+ Members

✦ Technorati: Dozens of blog posts per day

Community

Page 15: jQuery - Boston IxDA

Books✦ 3 Books Released:

✦ Learning jQuery (Packt)✦ jQuery Reference (Packt)✦ jQuery in Action (Manning)

Page 16: jQuery - Boston IxDA

Upcoming✦ jQuery 1.3

✦ New Selector Engine✦ Faster Manipulation

Page 17: jQuery - Boston IxDA

jquery.comdocs.jquery.com - jquery.com/plugins

More:ui.jquery.com

visualjquery.comlearningjquery.com