jquery (meshu)

35
Building Interactive Prototypes with jQuery MeshU - May 2008 John Resig (ejohn.org)

Upload: jeresig

Post on 17-May-2015

4.789 views

Category:

Technology


0 download

DESCRIPTION

MeshU (May 2008).

TRANSCRIPT

Page 1: jQuery (MeshU)

Building Interactive Prototypes with jQuery

MeshU - May 2008John Resig (ejohn.org)

Page 2: jQuery (MeshU)

What is jQuery?✦ An open source JavaScript library that

simplifies the interaction between HTML and JavaScript.

Page 3: jQuery (MeshU)

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

Page 4: jQuery (MeshU)

The Focus of jQuery

Find Some Elements

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

jQuery Object

Page 5: jQuery (MeshU)

The jQuery Object✦ Commonly named ‘$’✦ Also named ‘jQuery’✦ Completely valid:

✦ jQuery(“div”).addClass(“special”);

Page 6: jQuery (MeshU)

Find Some Elements...✦ Full CSS Selector 1-3 Support✦ Better CSS Selector support than most

browsers

Page 7: jQuery (MeshU)

$(“div”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 8: jQuery (MeshU)

$(“#body”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 9: jQuery (MeshU)

$(“div#body”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 10: jQuery (MeshU)

$(“div.contents p”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 11: jQuery (MeshU)

$(“div > div”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 12: jQuery (MeshU)

$(“div:has(div)”)<div id=”body”> <h2>Some Header</h2> <div class=”contents”> <p>...</p> <p>...</p> </div></div>

Page 13: jQuery (MeshU)

✦ DOM Manipulation (append, prepend, remove)

✦ Events (click, hover, toggle)

✦ Effects (hide, show, slideDown, fadeOut)

✦ AJAX (load, get, post)

Do something with them

Page 14: jQuery (MeshU)

DOM Manipulation✦ $(“a[target=_blank]”)

.append(“ (Opens in New Window)”);✦ $(“#body”).css({

border: “1px solid green”, height: “40px”});

Page 15: jQuery (MeshU)

Events✦ $(“form”).submit(function(){

if ( $(“input#name”).val() == “” ) $(“span.help”).show();});

✦ $(“a#open”).click(function(){ $(“#menu”).show(); return false;});

Page 16: jQuery (MeshU)

Animations✦ $(“#menu”).slideDown(“slow”);✦ Individual properties:$(“div”).animate({ fontWeight: “2em”, width: “+=20%”, color: “green” // via plugin});

✦ Callbacks:$(“div”).hide(500, function(){ // $(this) is an individual <div> element $(this).show(500);});

Page 17: jQuery (MeshU)

Ajax✦ $(“#asdf”).load(“sample.html”);

✦ Before:<div id=”body”></div>

✦ After:<div id=”body”><h1>Hello, world!</h1></div>

✦ $.getJSON(“test.json”, function(js){ for ( var name in js ) $(“ul”).append(“<li>” + name + “</li>”);});

Page 18: jQuery (MeshU)

Ajax (cont.)✦ $(“#body”).load(“sample.html div > h1”);

✦ Before:<div id=”body”></div>

✦ After:<div id=”body”><h1>Hello, world!</h1></div>

Page 19: jQuery (MeshU)

✦ You can have multiple actions against a single set of elements

✦ $(“div”).hide();

✦ $(“div”).hide().css(“color”,”blue”);

✦ $(“div”).hide().css(“color”,”blue”).slideDown();

Chaining

Page 20: jQuery (MeshU)

Chaining (cont.)✦ var ul = $(“ul.open”); // ul, ul, ul

ul.children(“li”) // li, li, li .addClass(“open”)

ul.find(“a”) // a, a, a .click(function(){ $(this).next().toggle(); return false; })

Page 21: jQuery (MeshU)

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

Safari 2+, and Opera 9+

Why jQuery?

Page 22: jQuery (MeshU)

Graduation✦ Ideal for Prototyping✦ Perfect for application development✦ Designers and Developers agree!

Page 23: jQuery (MeshU)

Accordion Menuhttp://jquery.com/files/apple/

http://jquery.com/files/apple/done.html

Page 24: jQuery (MeshU)

jQuery Plugins✦ Extend the jQuery system✦ Add on extra methods:$(“div”).hideRemove();

✦ Trivial to implement:jQuery.fn.hideRemove = function(speed){ return this.hide(speed, function(){ jQuery(this).remove(); });};

Page 25: jQuery (MeshU)

Plugins✦ Drag and Drop✦ Sortables✦ Modal Dialogs✦ Tabbed Navigation✦ Sortable Tables✦ And hundreds more...

Page 26: jQuery (MeshU)

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

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

Page 27: jQuery (MeshU)

Social Networkinghttp://jquery.com/files/social/

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

Page 28: jQuery (MeshU)

jQuery UI✦ Full set of themed widgets and

components✦ Drop in and have it “just work”✦ Themed to match your layout✦ Easy to prototype with, easy to use in the final product

Page 29: jQuery (MeshU)

UI Components✦ Drag & Drop✦ Resize✦ Tabs✦ Slider✦ Table Sorting✦ Modal Dialog✦ etc.

Page 30: jQuery (MeshU)

Who uses jQuery?✦ Google✦ IBM✦ NBC✦ Amazon✦ Wordpress✦ Digg✦ many others...

Page 31: jQuery (MeshU)

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

✦ Technorati: Dozens of blog posts per day

Community

Page 32: jQuery (MeshU)

Books✦ 3 Books Released:

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

Page 33: jQuery (MeshU)

Random✦ New Logo✦ and New Web Site✦ Coming Soon!

Page 34: jQuery (MeshU)

Summary✦ Perfect for rapid-prototyping and

deployable development.✦ Provides plenty of drop in UI code.

Page 35: jQuery (MeshU)

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

More:ui.jquery.com

visualjquery.comlearningjquery.com