SlideShare a Scribd company logo
jQuery
Developing online news packages
What is jQuery?
Web pages are made up of three
elements
Web pages are made up of three
elements
• HTML - content
Web pages are made up of three
elements
• HTML - content
• CSS - design
Web pages are made up of three
elements
• HTML - content
• CSS - design
• JavaScript - interactivity
The problem with JavaScript

•

Simple tasks like manipulating a webpage take lots of code.

•

Different browsers have slightly different methods of doing things,
requiring coders to create fallbacks.

•

Writing code, like an animation, could be inefficient or not the the best
method of doing something.
The problem with JavaScript

•

Simple tasks like manipulating a webpage take lots of code.

•

Different browsers have slightly different methods of doing things,
requiring coders to create fallbacks.

•

Writing code, like an animation, could be inefficient or not the the best
method of doing something.

jQuery to the rescue!
jQuery is a library
written in JavaScript
• jQuery is cross-browser compatible.
• Makes performing tasks like updating the page, relatively
simple.

• Less code required to introduce interactivity.
JavaScript

jQuery
JavaScript

function	
  fadeOut(elm,	
  interval)	
  {	
  
	
  	
  for	
  (var	
  i=10;	
  i>0;	
  i-­‐-­‐)	
  {	
  
	
  	
  	
  	
  var	
  opacity	
  =	
  i/10;	
  
	
  	
  	
  	
  setTimeout(	
  function(opacity)	
  {	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("-­‐moz-­‐opacity",opacity);	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("opacity",opacity);	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("filter","alpha(opacity="	
  +	
  
(opacity*100).toString()	
  );	
  
	
  	
  	
  	
  	
  	
  //set	
  alpha	
  values	
  for	
  various	
  browsers	
  
	
  	
  	
  	
  },	
  interval;	
  
	
  	
  }	
  
}	
  

!
fadeOut(getElementById('box'),	
  100);

jQuery
JavaScript

function	
  fadeOut(elm,	
  interval)	
  {	
  
	
  	
  for	
  (var	
  i=10;	
  i>0;	
  i-­‐-­‐)	
  {	
  
	
  	
  	
  	
  var	
  opacity	
  =	
  i/10;	
  
	
  	
  	
  	
  setTimeout(	
  function(opacity)	
  {	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("-­‐moz-­‐opacity",opacity);	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("opacity",opacity);	
  
	
  	
  	
  	
  	
  	
  elm.setStyle("filter","alpha(opacity="	
  +	
  
(opacity*100).toString()	
  );	
  
	
  	
  	
  	
  	
  	
  //set	
  alpha	
  values	
  for	
  various	
  browsers	
  
	
  	
  	
  	
  },	
  interval;	
  
	
  	
  }	
  
}	
  

!
fadeOut(getElementById('box'),	
  100);

jQuery

$('#box').fadeOut();
Where do I get jQuery?
jquery.com
OR
Link directly to the "Content Delivery Network"
(CDN)
http://code.jquery.com/jquery.min.js
Where do I put jQuery?
<head>	
  
!

	
  	
  	
  <title>Some	
  page	
  title</title>	
  
	
  	
  	
  <style>	
  
	
  	
  	
  	
  	
  	
  #container{	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  width:600px;	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  </style>	
  
	
  	
  	
  <script	
  src="jquery.min.js"></script>	
  
	
  	
  	
  <script>	
  
	
  	
  	
  	
  	
  	
  //your	
  jquery	
  commands	
  go	
  here	
  
	
  	
  	
  </script>	
  
!

</head>
Where do I put jQuery?
<head>	
  
!

	
  	
  	
  <title>Some	
  page	
  title</title>	
  
	
  	
  	
  <style>	
  
	
  	
  	
  	
  	
  	
  #container{	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  width:600px;	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  </style>	
  
	
  	
  	
  <script	
  src="jquery.min.js"></script>	
  
	
  	
  	
  <script>	
  
	
  	
  	
  	
  	
  	
  //your	
  jquery	
  commands	
  go	
  here	
  
	
  	
  	
  </script>	
  
!

</head>

jQuery Library
Where do I put jQuery?
<head>	
  
!

	
  	
  	
  <title>Some	
  page	
  title</title>	
  
	
  	
  	
  <style>	
  
	
  	
  	
  	
  	
  	
  #container{	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  width:600px;	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  </style>	
  
	
  	
  	
  <script	
  src="jquery.min.js"></script>	
  
	
  	
  	
  <script>	
  
	
  	
  	
  	
  	
  	
  //your	
  jquery	
  commands	
  go	
  here	
  
	
  	
  	
  </script>	
  
!

</head>

jQuery Library
Your jQuery commands
Where do I put jQuery?
<head>	
  
!

	
  	
  	
  <title>Some	
  page	
  title</title>	
  
	
  	
  	
  <style>	
  
	
  	
  	
  	
  	
  	
  #container{	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  width:600px;	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  </style>	
  
	
  	
  	
  <script	
  src="jquery.min.js"></script>	
  
	
  	
  	
  <script>	
  
	
  	
  	
  	
  	
  	
  //your	
  jquery	
  commands	
  go	
  here	
  
	
  	
  	
  </script>	
  
!

</head>

jQuery Library
Your jQuery commands
CSS code (before/after)
Review
What is jQuery?
Where on my web page do I put
jQuery?
Understanding
syntax
Understanding the syntax

$
Understanding the syntax

$

This means 'jQuery'
What do you want to manipulate?

$(".somebox")
$("#video")
$("div")
What do you want to manipulate?

$(".somebox")
$("#video")
$("div")
What do you want to manipulate?

$(".somebox")
$("#video")
$("div")
What do you want to manipulate?

$(".somebox")
$("#video")
$("div")
What do you want to manipulate?

$(".somebox")
$("#video")
$("div")
Note the quotes and parentheses
jQuery commands

$("#container").doSomething();
jQuery commands

$("#container").doSomething();
jQuery commands

$("#container").doSomething();
jQuery commands

$("#container").doSomething();
jQuery commands

$("#container")
$("#container")
$("#container")
jQuery commands

$("#container") .fadeOut();
$("#container")
$("#container")
jQuery commands

$("#container") .fadeOut();
$("#container") .hide();
$("#container")
jQuery commands

$("#container") .fadeOut();
$("#container") .hide();
$("#container") .slideDown();
Parts of jQuery command

$("#container").fadeOut();
Parts of jQuery command

$("#container").fadeOut();

jQuery
Parts of jQuery command

parentheses

$("#container").fadeOut();

jQuery
Parts of jQuery command

parentheses

$("#container").fadeOut();
quotes
jQuery
Parts of jQuery command

parentheses

$("#container").fadeOut();
css selector
quotes
jQuery
Parts of jQuery command

parentheses

$("#container").fadeOut();
css selector
quotes
jQuery

dot
Parts of jQuery command

parentheses

$("#container").fadeOut();
css selector
quotes
jQuery

command
dot
Parts of jQuery command

parentheses

$("#container").fadeOut();
css selector
quotes
jQuery

command
dot

parentheses
Parts of jQuery command
semicolon

parentheses

$("#container").fadeOut();
css selector
quotes
jQuery

command
dot

parentheses
Review
Describe the jQuery command to
fade out a div element with the id
name "container"
Describe the jQuery command to
fade out a div element with the id
name "container"
$
Describe the jQuery command to
fade out a div element with the id
name "container"
$(
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container"
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container")
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container").
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container").fadeOut
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container").fadeOut()
Describe the jQuery command to
fade out a div element with the id
name "container"
$ ("#container").fadeOut();
jQuery in action
<div	
  id="box"></div>
jQuery in action
<div	
  id="box"></div>

$("#box").fadeOut();
jQuery in action
<div	
  id="box"></div>
jQuery in action
<div	
  id="box"></div>

$("#box").slideUp();
jQuery in action
<div	
  id="box"></div>
jQuery in action
<div	
  id="box"></div>

$("#box").hide();
jQuery in action
<div	
  id="box"></div>
jQuery in action
<div	
  id="box"></div>

Hello
World

$("#box").text("Hello	
  World");
Parameters
Parameters in jQuery

$("#container").fadeOut();
Parameters in jQuery

$("#container").fadeOut();

parentheses
Parameters in jQuery

$("#container").fadeOut("slow");
Parameters in jQuery

$("#container").fadeOut("slow");
parameter
Parameters in jQuery

$("#container").fadeOut(3000);
Parameters in jQuery

$("#container").fadeOut(3000);
parameter
Parameters in jQuery

$("#container").text("Hello	
  World");

All text has to be in quotes, unless it is some
special command recognized by JavaScript.
Parameters in jQuery

$("#container").text("Hello	
  World");
quotes
All text has to be in quotes, unless it is some
special command recognized by JavaScript.
Parameters in jQuery

$("#container").fadeOut(200);
Will fade out element with id #container 

in 200 milliseconds
Parameters in jQuery

$("#container").fadeOut(200);
Will fade out element with id #container 

in 200 milliseconds
Review
Why is there a parenthesis at the
end of every jQuery command?
$("#someid").command();
wtf?
Why is there a parenthesis at the
end of every jQuery command?
$("#someid").command();
wtf?
To sometimes include additional information
about how the command should operate

oh.
What does the following jQuery
command do?
$("#title").fadeOut(4000);
What does the following jQuery
command do?
$("#title").fadeOut(4000);
Fades out some HTML element with an id
attribute "title" over the course of four seconds
What's wrong with the following
jQuery command?
$("#footer").text(This	
  is	
  copyrighted);
What's wrong with the following
jQuery command?
$("#footer").text(This	
  is	
  copyrighted);
When the parameter is text, it NEEDS
to have quotes or it won't work.

$("#footer").text("This	
  is	
  copyrighted");
Multiple Parameters
Multiple Parameters

$("#container").css("background",	
  "red");
Multiple Parameters

$("#container").css("background",	
  "red");
1st parameter

2nd parameter
Multiple Parameters
comma
$("#container").css("background",	
  "red");
1st parameter

2nd parameter
Multiple Parameters

$("#container").fadeTo(5000,	
  0.5);
Multiple Parameters

$("#container").fadeTo(5000,	
  0.5);
Multiple Parameters
comma
$("#container").fadeTo(5000,	
  0.5);
Review
What character symbol do I use to
separate multiple parameters?
What character symbol do I use to
separate multiple parameters?

A comma

$("#container").css("background",	
  "red");
How would I write a command to
change the CSS of #box so that the
text color is blue?
How would I write a command to
change the CSS of #box so that the
text color is blue?
$
How would I write a command to
change the CSS of #box so that the
text color is blue?
$(
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box"
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box")
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css(
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css("color"
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css("color",
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css("color","blue"
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css("color","blue" )
How would I write a command to
change the CSS of #box so that the
text color is blue?
$ ("#box").css("color","blue" );
Functions
What are functions?
•

Functions are simply blocks of code that are in a
waiting queue to be run.

•

Think of it as a way of saying "do the following…"
but only when activated.

•

Functions only run at certain times. In jQuery, a
function is usually runs when a user clicks a
button, or performs some type of action.
jQuery functions

$("#button").on("click"…
jQuery functions
wait for something to happen
$("#button").on("click"…
jQuery functions

$("#button").on("click",	
  function(){});
jQuery functions

$("#button").on("click",	
  function(){});
jQuery functions
parenthesis, which we
won't ever use in functions
$("#button").on("click",	
  function(){});
jQuery functions
parenthesis, which we
won't ever use in functions
$("#button").on("click",	
  function(){});
We put code inside the
curly brackets to be called
only after the event click
happens.
jQuery functions

$("#button").on("click",	
  function(){});
jQuery functions

$("#button").on("click",	
  function(){
$("#box").fadeOut();

});

Code only runs after!
button is clicked.
Anatomy of a function

function	
  (){}
Anatomy of a function

function	
  (){
Code goes here

}
Review
What's a function?
What's a function?

A block of code which is only run at a certain
time, like after an event, such as when a user
clicks on a button.
Describe all the parts of a function
from beginning to end.
Describe all the parts of a function
from beginning to end.

function
Describe all the parts of a function
from beginning to end.

function()
Describe all the parts of a function
from beginning to end.

function(){}
Where does the code go that should
execute when this function is run?

function(){}
Where does the code go that should
execute when this function is run?

function(){}
Right here
What does the following do in
jQuery?
$("#button").on("click",	
  function(){	
  
!

	
   $("#title").fadeOut("fast");	
  
!

});
What does the following do in
jQuery?
$("#button").on("click",	
  function(){	
  
!

	
   $("#title").fadeOut("fast");	
  
!

});
When the HTML element with the id attribute "button"
is clicked, an element "title" will fade out quickly.
Animation
animate method

$("#box").animate({'left':'50px'},	
  3000);

Just to expose you to this command
(don't worry about memorizing it)
animate method

$("#box").animate({'left':'50px'},	
  3000);

jquery selector

Just to expose you to this command
(don't worry about memorizing it)
animate method
jquery command

$("#box").animate({'left':'50px'},	
  3000);

jquery selector

Just to expose you to this command
(don't worry about memorizing it)
animate method
css property

value

jquery command

$("#box").animate({'left':'50px'},	
  3000);

jquery selector

Just to expose you to this command
(don't worry about memorizing it)
animate method
css property

value

jquery command

$("#box").animate({'left':'50px'},	
  3000);
curly brackets
jquery selector

Just to expose you to this command
(don't worry about memorizing it)
animate method
css property
jquery command

value

colon

$("#box").animate({'left':'50px'},	
  3000);
curly brackets
jquery selector

Just to expose you to this command
(don't worry about memorizing it)
animate method
css property
jquery command

value

colon

$("#box").animate({'left':'50px'},	
  3000);
curly brackets
jquery selector

milliseconds

Just to expose you to this command
(don't worry about memorizing it)
animate method
css property
jquery command

value

colon

$("#box").animate({'left':'50px'},	
  3000);
curly brackets
jquery selector

milliseconds

Just to expose you to this command
(don't worry about memorizing it)
jQuery "ready"

•
•

jQuery can't run until the entire webpage is fully loaded.
Because web pages run from the top to bottom, we need
to place a trigger to prevent jQuery from running until the
web page is fully loaded.
All jQuery code goes into a
"ready" block

$(document).ready(function(){	
  
!
!
!

});

More Related Content

What's hot

CSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and moreCSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and more
Russ Weakley
 
Be nice to your designers
Be nice to your designersBe nice to your designers
Be nice to your designersPai-Cheng Tao
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 
jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009
Ralph Whitbeck
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
Marc Grabanski
 
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan ShroyerJoomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Steven Pignataro
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointSahil Gandhi
 
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
Marc Grabanski
 
An Intro to HTML & CSS
An Intro to HTML & CSSAn Intro to HTML & CSS
An Intro to HTML & CSS
Shay Howe
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5
Kevin DeRudder
 
Intro to OOCSS Workshop
Intro to OOCSS WorkshopIntro to OOCSS Workshop
Intro to OOCSS Workshop
Julie Cameron
 
Intro to CSS Presentation
Intro to CSS PresentationIntro to CSS Presentation
Intro to CSS Presentation
WP Pittsburgh Meetup Group
 
Demystifying WordPress Conditional Tags
Demystifying WordPress Conditional TagsDemystifying WordPress Conditional Tags
Demystifying WordPress Conditional Tags
WP Pittsburgh Meetup Group
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media Queries
Russ Weakley
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS Workshop
Shay Howe
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo Workshop
Shay Howe
 

What's hot (20)

CSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and moreCSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and more
 
Be nice to your designers
Be nice to your designersBe nice to your designers
Be nice to your designers
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009
 
Html5 public
Html5 publicHtml5 public
Html5 public
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
 
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan ShroyerJoomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 
Yuicss R7
Yuicss R7Yuicss R7
Yuicss R7
 
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
 
An Intro to HTML & CSS
An Intro to HTML & CSSAn Intro to HTML & CSS
An Intro to HTML & CSS
 
Css3
Css3Css3
Css3
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5
 
Intro to OOCSS Workshop
Intro to OOCSS WorkshopIntro to OOCSS Workshop
Intro to OOCSS Workshop
 
Intro to CSS Presentation
Intro to CSS PresentationIntro to CSS Presentation
Intro to CSS Presentation
 
Demystifying WordPress Conditional Tags
Demystifying WordPress Conditional TagsDemystifying WordPress Conditional Tags
Demystifying WordPress Conditional Tags
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media Queries
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS Workshop
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo Workshop
 

Viewers also liked

Understanding DIVs
Understanding DIVsUnderstanding DIVs
Responsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparisonResponsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparison
DhrubaJyoti Dey
 
Div’s vs Tables
Div’s vs TablesDiv’s vs Tables
Div’s vs Tables
jwmoore76
 
Intro to CSS
Intro to CSSIntro to CSS
The 960 Grid System
The 960 Grid SystemThe 960 Grid System
Intro to HTML
Intro to HTMLIntro to HTML
CSS Tutorial
CSS TutorialCSS Tutorial
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
Hawkman Academy
 

Viewers also liked (12)

Jquery plugins
Jquery pluginsJquery plugins
Jquery plugins
 
Understanding DIVs
Understanding DIVsUnderstanding DIVs
Understanding DIVs
 
Quiz
QuizQuiz
Quiz
 
Responsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparisonResponsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparison
 
Floats
FloatsFloats
Floats
 
Div’s vs Tables
Div’s vs TablesDiv’s vs Tables
Div’s vs Tables
 
Intro to CSS
Intro to CSSIntro to CSS
Intro to CSS
 
The 960 Grid System
The 960 Grid SystemThe 960 Grid System
The 960 Grid System
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
CSS Tutorial
CSS TutorialCSS Tutorial
CSS Tutorial
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 
Basic css-tutorial
Basic css-tutorialBasic css-tutorial
Basic css-tutorial
 

Similar to Jquery News Packages

Write Less Do More
Write Less Do MoreWrite Less Do More
Write Less Do More
Remy Sharp
 
Bcblackpool jquery tips
Bcblackpool jquery tipsBcblackpool jquery tips
Bcblackpool jquery tipsJack Franklin
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)David Giard
 
Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...
Thinqloud
 
Game jump: frontend introduction #1
Game jump: frontend introduction #1Game jump: frontend introduction #1
Game jump: frontend introduction #1
Sebastian Pożoga
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
Doris Chen
 
Introduction to jQuery - Barcamp London 9
Introduction to jQuery - Barcamp London 9Introduction to jQuery - Barcamp London 9
Introduction to jQuery - Barcamp London 9
Jack Franklin
 
Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3
luckysb16
 
jQuery basics
jQuery basicsjQuery basics
jQuery basics
Stijn Van Minnebruggen
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014Mark Rackley
 
jQuery in 15 minutes
jQuery in 15 minutesjQuery in 15 minutes
jQuery in 15 minutes
Simon Willison
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile IntroGonzalo Parra
 
Javascript in Plone
Javascript in PloneJavascript in Plone
Javascript in Plone
Steve McMahon
 
J query
J queryJ query
J query
Manav Prasad
 
Introduction to jQuery (Ajax Exp 2006)
Introduction to jQuery (Ajax Exp 2006)Introduction to jQuery (Ajax Exp 2006)
Introduction to jQuery (Ajax Exp 2006)jeresig
 
Jquery in-15-minutes1421
Jquery in-15-minutes1421Jquery in-15-minutes1421
Jquery in-15-minutes1421palsingh26
 
Stack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for DevelopersStack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for DevelopersJonathan Sharp
 
jQuery (BostonPHP)
jQuery (BostonPHP)jQuery (BostonPHP)
jQuery (BostonPHP)
jeresig
 

Similar to Jquery News Packages (20)

Write Less Do More
Write Less Do MoreWrite Less Do More
Write Less Do More
 
Bcblackpool jquery tips
Bcblackpool jquery tipsBcblackpool jquery tips
Bcblackpool jquery tips
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
 
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)How I Learned to Stop Worrying and Love jQuery (Jan 2013)
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
 
Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...Learning jQuery made exciting in an interactive session by one of our team me...
Learning jQuery made exciting in an interactive session by one of our team me...
 
Game jump: frontend introduction #1
Game jump: frontend introduction #1Game jump: frontend introduction #1
Game jump: frontend introduction #1
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
 
Introduction to jQuery - Barcamp London 9
Introduction to jQuery - Barcamp London 9Introduction to jQuery - Barcamp London 9
Introduction to jQuery - Barcamp London 9
 
Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3Learning jquery-in-30-minutes-1195942580702664-3
Learning jquery-in-30-minutes-1195942580702664-3
 
jQuery basics
jQuery basicsjQuery basics
jQuery basics
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014
 
jQuery in 15 minutes
jQuery in 15 minutesjQuery in 15 minutes
jQuery in 15 minutes
 
Jquery
JqueryJquery
Jquery
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
 
Javascript in Plone
Javascript in PloneJavascript in Plone
Javascript in Plone
 
J query
J queryJ query
J query
 
Introduction to jQuery (Ajax Exp 2006)
Introduction to jQuery (Ajax Exp 2006)Introduction to jQuery (Ajax Exp 2006)
Introduction to jQuery (Ajax Exp 2006)
 
Jquery in-15-minutes1421
Jquery in-15-minutes1421Jquery in-15-minutes1421
Jquery in-15-minutes1421
 
Stack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for DevelopersStack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for Developers
 
jQuery (BostonPHP)
jQuery (BostonPHP)jQuery (BostonPHP)
jQuery (BostonPHP)
 

Recently uploaded

Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 

Recently uploaded (20)

Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 

Jquery News Packages