SlideShare ist ein Scribd-Unternehmen logo
1 von 140
Downloaden Sie, um offline zu lesen
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(){	
  
!
!
!

});

Weitere ähnliche Inhalte

Was ist angesagt?

CSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and moreCSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and moreRuss 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 nowGonzalo Cordero
 
jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009jQuery For Beginners - jQuery Conference 2009
jQuery For Beginners - jQuery Conference 2009Ralph Whitbeck
 
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 ShroyerSteven 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 & CSSShay 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 html5Kevin DeRudder
 
Intro to OOCSS Workshop
Intro to OOCSS WorkshopIntro to OOCSS Workshop
Intro to OOCSS WorkshopJulie Cameron
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media QueriesRuss Weakley
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS WorkshopShay Howe
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopShay Howe
 

Was ist angesagt? (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
 

Andere mochten auch (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
 

Ähnlich wie Jquery News Packages

Write Less Do More
Write Less Do MoreWrite Less Do More
Write Less Do MoreRemy 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 2009Remy 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 #1Sebastian 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 9Jack 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-3luckysb16
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014Mark Rackley
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile IntroGonzalo Parra
 
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
 

Ähnlich wie 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)
 

Kürzlich hochgeladen

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 

Kürzlich hochgeladen (20)

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 

Jquery News Packages