SlideShare a Scribd company logo
Sudar ( http://SudarMuthu.com ) WebCamp Chennai – 23 Feb 2008
Famous Client – Side frameworks jQuery Prototype Yahoo User Interface Library (YUI) Dojo Rico WebCamp - Chennai http://SudarMuthu.com
The $() function Build around CSS selectors WordPress has started to use jQuery Lots of Plugins Can be used with other libraries Doesn’t hijack the global namespace Small Size (Just 15 KB after Minified and Gzipped) Write Less, Do More WebCamp - Chennai http://SudarMuthu.com
Matches a set of elements and returns a collection.  Uses CSS Selectors $ (‘#comment’) $(‘div.comment’) $(‘div#content h2’) $(‘input:password’) $(‘a[href^=“http://”]’) $(‘ul#nav > li’) You can also use jQuery() instead of $() WebCamp - Chennai http://SudarMuthu.com
$ (‘h2:first’) $(‘h2:last’) $(‘p:visible’) $(‘p:hidden’) $(‘input:password’) $(‘input:text’) $(‘p:odd’) WebCamp - Chennai http://SudarMuthu.com
The $ () function returns a collection consisting of  the elements that match the selector.  It is similar to an array, but not exactly same. You can use  $(‘p.special’).length or  $(‘p.special’).size() Both return the number of matched elements WebCamp - Chennai http://SudarMuthu.com
You can use .each() to iterate the collection $(‘p.special’).each(function () { alert (this); }); $(‘p.special’)[0] – First element $(‘p.special’)[1] -  Second element WebCamp - Chennai http://SudarMuthu.com
Access a property of matched element $(‘img#header’).attr(‘src’) – returns the src attribute $(‘img#header’).attr(‘src’, ‘http://e.in/head.gif’) Set the src attribute WebCamp - Chennai http://SudarMuthu.com
val() – Get the value of the input element var singleValue = $(‘#single’).val(); val(val) – Set the value of an input element $("input:text"). val (“Value Text”); $(“#multiple”).val([“multiple1”, “multiple2”]); WebCamp - Chennai http://SudarMuthu.com
$(‘img#header’).addClass(‘highlighted’) $(‘img#header’).removeClass(‘highlighted’) $(‘img#header’).toggleClass(‘highlighted’) var hasBar = #(‘img#header’).hasClass(‘special’) $(‘p.special’).css(‘font-size’, ’12px’ ) $(‘p.special’).css({‘font-size’:’12px’, ‘color’:’red’ }) WebCamp - Chennai http://SudarMuthu.com
Similar to innerHTML $(‘span#error’).text(“There is some error”) $(‘div#msg’).html(“<strong>Message</strong>”) WebCamp - Chennai http://SudarMuthu.com
$(‘span#msg’).show() Also show(speed, [callback]) $(‘span#msg’).show(“fast”, function() { alert (“Done”); }); $(‘span#msg’).hide() Also hide(speed, [callback]) WebCamp - Chennai http://SudarMuthu.com
toggle() fadeIn() fadeOut() fadeTo() slideUp() slideDown() animate() stop() WebCamp - Chennai http://SudarMuthu.com
Enhanced methods for traversing DOM $(‘div#nav’).parent() $(‘div#nav’).next() $(‘div#nav’).prev() $(‘div#nav’).nextAll(‘a’) WebCamp - Chennai http://SudarMuthu.com
Enhanced methods for manipulating DOM after(content) append(content) before(content) clone() empty() remove(expr) WebCamp - Chennai http://SudarMuthu.com
Provides methods for assigning events in a cross  browser way $(‘div#msg’).click(function(ev) { $(this).css(‘color’, ‘red’); alert(‘Clicked’); }); Lot of other handlers also available WebCamp - Chennai http://SudarMuthu.com
Alternate to onLoad event $(document).ready(function() { alert (“DOM is Ready”); }); You can also use $(function() { alert (“DOM is Ready”); }); WebCamp - Chennai http://SudarMuthu.com
jQuery has excellent support for AJAX $(‘div#msg’).load(‘/dir/file.html’) You can also use other advanced methods $.get(url, params, callback) $.post(url, params, callback) $.getJSON(url, params, callback) $.getScript(url, callback) WebCamp - Chennai http://SudarMuthu.com
$.trim(str) $.browser if ($.browser.safari) { alert(“This is Safari”); } You can also use safari opera msie Mozilla $.each(object, callback) WebCamp - Chennai http://SudarMuthu.com
Lot of Plugins available for Form Validation Drop down Menus UI Drag and Drop Etc.., Official Plugin repository at  http://plugins.jquery.com/ WebCamp - Chennai http://SudarMuthu.com
http://jquery.com  – Official Site http://docs.jquery.com  - Documentation http://plugins.jquery.com  – Plugin repositry http://visualjquery.com  – API Reference http://sudarmuthu.com/blog/tag/jquery  - My blog posts about jQuery WebCamp - Chennai http://SudarMuthu.com

More Related Content

What's hot (20)

jQuery Presentation
jQuery PresentationjQuery Presentation
jQuery Presentation
Rod Johnson
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
jQuery from the very beginning
jQuery from the very beginningjQuery from the very beginning
jQuery from the very beginning
Anis Ahmad
 
Prototype & jQuery
Prototype & jQueryPrototype & jQuery
Prototype & jQuery
Remy Sharp
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery Basics
Kaloyan Kosev
 
jQuery Essentials
jQuery EssentialsjQuery Essentials
jQuery Essentials
Marc Grabanski
 
jQuery in 15 minutes
jQuery in 15 minutesjQuery in 15 minutes
jQuery in 15 minutes
Simon Willison
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Gil Fink
 
Write Less Do More
Write Less Do MoreWrite Less Do More
Write Less Do More
Remy Sharp
 
jQuery
jQueryjQuery
jQuery
Jay Poojara
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
Siva Arunachalam
 
Jquery introduction
Jquery introductionJquery introduction
Jquery introduction
musrath mohammad
 
jQuery Essentials
jQuery EssentialsjQuery Essentials
jQuery Essentials
Bedis ElAchèche
 
jQuery Introduction
jQuery IntroductionjQuery Introduction
jQuery Introduction
Arwid Bancewicz
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practices
manugoel2003
 
jQuery PPT
jQuery PPTjQuery PPT
jQuery PPT
Dominic Arrojado
 
jQuery
jQueryjQuery
jQuery
Mostafa Bayomi
 
Unobtrusive javascript with jQuery
Unobtrusive javascript with jQueryUnobtrusive javascript with jQuery
Unobtrusive javascript with jQuery
Angel Ruiz
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Gunjan Kumar
 
Jquery-overview
Jquery-overviewJquery-overview
Jquery-overview
Isfand yar Khan
 
jQuery Presentation
jQuery PresentationjQuery Presentation
jQuery Presentation
Rod Johnson
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
jQuery from the very beginning
jQuery from the very beginningjQuery from the very beginning
jQuery from the very beginning
Anis Ahmad
 
Prototype & jQuery
Prototype & jQueryPrototype & jQuery
Prototype & jQuery
Remy Sharp
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery Basics
Kaloyan Kosev
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Gil Fink
 
Write Less Do More
Write Less Do MoreWrite Less Do More
Write Less Do More
Remy Sharp
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practices
manugoel2003
 
Unobtrusive javascript with jQuery
Unobtrusive javascript with jQueryUnobtrusive javascript with jQuery
Unobtrusive javascript with jQuery
Angel Ruiz
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Gunjan Kumar
 

Similar to A Short Introduction To jQuery (20)

Jquery optimization-tips
Jquery optimization-tipsJquery optimization-tips
Jquery optimization-tips
anubavam-techkt
 
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
 
fuser interface-development-using-jquery
fuser interface-development-using-jqueryfuser interface-development-using-jquery
fuser interface-development-using-jquery
Kostas Mavridis
 
Working With JQuery Part1
Working With JQuery Part1Working With JQuery Part1
Working With JQuery Part1
saydin_soft
 
jQuery: Tips, tricks and hints for better development and Performance
jQuery: Tips, tricks and hints for better development and PerformancejQuery: Tips, tricks and hints for better development and Performance
jQuery: Tips, tricks and hints for better development and Performance
Jonas De Smet
 
Remy Sharp The DOM scripting toolkit jQuery
Remy Sharp The DOM scripting toolkit jQueryRemy Sharp The DOM scripting toolkit jQuery
Remy Sharp The DOM scripting toolkit jQuery
deimos
 
jQuery Anti-Patterns for Performance
jQuery Anti-Patterns for PerformancejQuery Anti-Patterns for Performance
jQuery Anti-Patterns for Performance
András Kovács
 
Iniciando com jquery
Iniciando com jqueryIniciando com jquery
Iniciando com jquery
Danilo Sousa
 
User Interface Development with jQuery
User Interface Development with jQueryUser Interface Development with jQuery
User Interface Development with jQuery
colinbdclark
 
Week 4 - jQuery + Ajax
Week 4 - jQuery + AjaxWeek 4 - jQuery + Ajax
Week 4 - jQuery + Ajax
baygross
 
The Dom Scripting Toolkit J Query
The Dom Scripting Toolkit J QueryThe Dom Scripting Toolkit J Query
The Dom Scripting Toolkit J Query
QConLondon2008
 
Kick start with j query
Kick start with j queryKick start with j query
Kick start with j query
Md. Ziaul Haq
 
jQuery
jQueryjQuery
jQuery
Ivano Malavolta
 
J query fundamentals
J query fundamentalsJ query fundamentals
J query fundamentals
Attaporn Ninsuwan
 
jQuery, CSS3 and ColdFusion
jQuery, CSS3 and ColdFusionjQuery, CSS3 and ColdFusion
jQuery, CSS3 and ColdFusion
Denard Springle IV
 
Jquery fundamentals
Jquery fundamentalsJquery fundamentals
Jquery fundamentals
Salvatore Fazio
 
jQuery
jQueryjQuery
jQuery
Jeremiah Gatong
 
jQuery
jQueryjQuery
jQuery
Niladri Karmakar
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
Cognizant
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Sean Burgess
 
Jquery optimization-tips
Jquery optimization-tipsJquery optimization-tips
Jquery optimization-tips
anubavam-techkt
 
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
 
fuser interface-development-using-jquery
fuser interface-development-using-jqueryfuser interface-development-using-jquery
fuser interface-development-using-jquery
Kostas Mavridis
 
Working With JQuery Part1
Working With JQuery Part1Working With JQuery Part1
Working With JQuery Part1
saydin_soft
 
jQuery: Tips, tricks and hints for better development and Performance
jQuery: Tips, tricks and hints for better development and PerformancejQuery: Tips, tricks and hints for better development and Performance
jQuery: Tips, tricks and hints for better development and Performance
Jonas De Smet
 
Remy Sharp The DOM scripting toolkit jQuery
Remy Sharp The DOM scripting toolkit jQueryRemy Sharp The DOM scripting toolkit jQuery
Remy Sharp The DOM scripting toolkit jQuery
deimos
 
jQuery Anti-Patterns for Performance
jQuery Anti-Patterns for PerformancejQuery Anti-Patterns for Performance
jQuery Anti-Patterns for Performance
András Kovács
 
Iniciando com jquery
Iniciando com jqueryIniciando com jquery
Iniciando com jquery
Danilo Sousa
 
User Interface Development with jQuery
User Interface Development with jQueryUser Interface Development with jQuery
User Interface Development with jQuery
colinbdclark
 
Week 4 - jQuery + Ajax
Week 4 - jQuery + AjaxWeek 4 - jQuery + Ajax
Week 4 - jQuery + Ajax
baygross
 
The Dom Scripting Toolkit J Query
The Dom Scripting Toolkit J QueryThe Dom Scripting Toolkit J Query
The Dom Scripting Toolkit J Query
QConLondon2008
 
Kick start with j query
Kick start with j queryKick start with j query
Kick start with j query
Md. Ziaul Haq
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
Cognizant
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Sean Burgess
 

More from Sudar Muthu (20)

A quick preview of WP CLI - Chennai WordPress Meetup
A quick preview of WP CLI - Chennai WordPress MeetupA quick preview of WP CLI - Chennai WordPress Meetup
A quick preview of WP CLI - Chennai WordPress Meetup
Sudar Muthu
 
WordPress Developer tools
WordPress Developer toolsWordPress Developer tools
WordPress Developer tools
Sudar Muthu
 
WordPress Developer Tools to increase productivity
WordPress Developer Tools to increase productivityWordPress Developer Tools to increase productivity
WordPress Developer Tools to increase productivity
Sudar Muthu
 
Unit testing for WordPress
Unit testing for WordPressUnit testing for WordPress
Unit testing for WordPress
Sudar Muthu
 
Unit testing in php
Unit testing in phpUnit testing in php
Unit testing in php
Sudar Muthu
 
Using arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of thingsUsing arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of things
Sudar Muthu
 
How arduino helped me in life
How arduino helped me in lifeHow arduino helped me in life
How arduino helped me in life
Sudar Muthu
 
Having fun with hardware
Having fun with hardwareHaving fun with hardware
Having fun with hardware
Sudar Muthu
 
Getting started with arduino workshop
Getting started with arduino workshopGetting started with arduino workshop
Getting started with arduino workshop
Sudar Muthu
 
Python in raspberry pi
Python in raspberry piPython in raspberry pi
Python in raspberry pi
Sudar Muthu
 
Hack 101 at IIT Kanpur
Hack 101 at IIT KanpurHack 101 at IIT Kanpur
Hack 101 at IIT Kanpur
Sudar Muthu
 
PureCSS open hack 2013
PureCSS open hack 2013PureCSS open hack 2013
PureCSS open hack 2013
Sudar Muthu
 
Pig workshop
Pig workshopPig workshop
Pig workshop
Sudar Muthu
 
Arduino Robotics workshop day2
Arduino Robotics workshop day2Arduino Robotics workshop day2
Arduino Robotics workshop day2
Sudar Muthu
 
Arduino Robotics workshop Day1
Arduino Robotics workshop Day1Arduino Robotics workshop Day1
Arduino Robotics workshop Day1
Sudar Muthu
 
Hands on Hadoop and pig
Hands on Hadoop and pigHands on Hadoop and pig
Hands on Hadoop and pig
Sudar Muthu
 
Lets make robots
Lets make robotsLets make robots
Lets make robots
Sudar Muthu
 
Capabilities of Arduino (including Due)
Capabilities of Arduino (including Due)Capabilities of Arduino (including Due)
Capabilities of Arduino (including Due)
Sudar Muthu
 
Controlling robots using javascript
Controlling robots using javascriptControlling robots using javascript
Controlling robots using javascript
Sudar Muthu
 
Picture perfect hacks with flickr API
Picture perfect hacks with flickr APIPicture perfect hacks with flickr API
Picture perfect hacks with flickr API
Sudar Muthu
 
A quick preview of WP CLI - Chennai WordPress Meetup
A quick preview of WP CLI - Chennai WordPress MeetupA quick preview of WP CLI - Chennai WordPress Meetup
A quick preview of WP CLI - Chennai WordPress Meetup
Sudar Muthu
 
WordPress Developer tools
WordPress Developer toolsWordPress Developer tools
WordPress Developer tools
Sudar Muthu
 
WordPress Developer Tools to increase productivity
WordPress Developer Tools to increase productivityWordPress Developer Tools to increase productivity
WordPress Developer Tools to increase productivity
Sudar Muthu
 
Unit testing for WordPress
Unit testing for WordPressUnit testing for WordPress
Unit testing for WordPress
Sudar Muthu
 
Unit testing in php
Unit testing in phpUnit testing in php
Unit testing in php
Sudar Muthu
 
Using arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of thingsUsing arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of things
Sudar Muthu
 
How arduino helped me in life
How arduino helped me in lifeHow arduino helped me in life
How arduino helped me in life
Sudar Muthu
 
Having fun with hardware
Having fun with hardwareHaving fun with hardware
Having fun with hardware
Sudar Muthu
 
Getting started with arduino workshop
Getting started with arduino workshopGetting started with arduino workshop
Getting started with arduino workshop
Sudar Muthu
 
Python in raspberry pi
Python in raspberry piPython in raspberry pi
Python in raspberry pi
Sudar Muthu
 
Hack 101 at IIT Kanpur
Hack 101 at IIT KanpurHack 101 at IIT Kanpur
Hack 101 at IIT Kanpur
Sudar Muthu
 
PureCSS open hack 2013
PureCSS open hack 2013PureCSS open hack 2013
PureCSS open hack 2013
Sudar Muthu
 
Arduino Robotics workshop day2
Arduino Robotics workshop day2Arduino Robotics workshop day2
Arduino Robotics workshop day2
Sudar Muthu
 
Arduino Robotics workshop Day1
Arduino Robotics workshop Day1Arduino Robotics workshop Day1
Arduino Robotics workshop Day1
Sudar Muthu
 
Hands on Hadoop and pig
Hands on Hadoop and pigHands on Hadoop and pig
Hands on Hadoop and pig
Sudar Muthu
 
Lets make robots
Lets make robotsLets make robots
Lets make robots
Sudar Muthu
 
Capabilities of Arduino (including Due)
Capabilities of Arduino (including Due)Capabilities of Arduino (including Due)
Capabilities of Arduino (including Due)
Sudar Muthu
 
Controlling robots using javascript
Controlling robots using javascriptControlling robots using javascript
Controlling robots using javascript
Sudar Muthu
 
Picture perfect hacks with flickr API
Picture perfect hacks with flickr APIPicture perfect hacks with flickr API
Picture perfect hacks with flickr API
Sudar Muthu
 

Recently uploaded (20)

CTG - 1Q2025 Business Update - website.pdf
CTG - 1Q2025 Business Update - website.pdfCTG - 1Q2025 Business Update - website.pdf
CTG - 1Q2025 Business Update - website.pdf
HcTrSoros
 
Module 1 -Understanding the MSME Landscape.pptx
Module 1 -Understanding the MSME Landscape.pptxModule 1 -Understanding the MSME Landscape.pptx
Module 1 -Understanding the MSME Landscape.pptx
benstud93
 
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
winstonjeria
 
Complete MEAN Stack Hiring Guide for Startups
Complete MEAN Stack Hiring Guide for StartupsComplete MEAN Stack Hiring Guide for Startups
Complete MEAN Stack Hiring Guide for Startups
Mobisoft Infotech
 
EEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
EEN Decentralized Online Training on AI & Green Innovation at Standort TirolEEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
EEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
MIPLM
 
Paul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky - Wealth Of Knowledge And ExpertisePaul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky
 
Solaris Resources Corporate Presentation
Solaris Resources Corporate PresentationSolaris Resources Corporate Presentation
Solaris Resources Corporate Presentation
pchambers2
 
To AI, or Not to AI - AI / Copilot session during Engage 2025
To AI, or Not to AI - AI / Copilot session during Engage 2025To AI, or Not to AI - AI / Copilot session during Engage 2025
To AI, or Not to AI - AI / Copilot session during Engage 2025
Roland Driesen
 
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
RUPAL AGARWAL
 
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
bomay69950
 
Transformation journey of a leading NBFC
Transformation journey of a leading NBFCTransformation journey of a leading NBFC
Transformation journey of a leading NBFC
PeopleWiz Consulting
 
Appreciations - May 25 (3).pptx Newsletter
Appreciations - May 25 (3).pptx NewsletterAppreciations - May 25 (3).pptx Newsletter
Appreciations - May 25 (3).pptx Newsletter
sunnycochrane46
 
Module 4 - Strengthening Financial Resilience.pptx
Module 4 - Strengthening Financial Resilience.pptxModule 4 - Strengthening Financial Resilience.pptx
Module 4 - Strengthening Financial Resilience.pptx
winstonjeria
 
Effectively Deploying Artificial Intelligence Strategy at Scale
Effectively Deploying Artificial Intelligence Strategy at ScaleEffectively Deploying Artificial Intelligence Strategy at Scale
Effectively Deploying Artificial Intelligence Strategy at Scale
RocketSource
 
Stop Ad Fraud in Its Tracks – With mFilterIt.pptx
Stop Ad Fraud in Its Tracks – With mFilterIt.pptxStop Ad Fraud in Its Tracks – With mFilterIt.pptx
Stop Ad Fraud in Its Tracks – With mFilterIt.pptx
mFilterIt
 
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Lviv Startup Club
 
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About StorytellingRobbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan
 
Joseph Solinger - A Dynamic Professional Journey
Joseph Solinger - A Dynamic Professional JourneyJoseph Solinger - A Dynamic Professional Journey
Joseph Solinger - A Dynamic Professional Journey
Joseph Solinger
 
AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025
MIPLM
 
1911 Gold Corporate Presentation May 2025
1911 Gold Corporate Presentation May 20251911 Gold Corporate Presentation May 2025
1911 Gold Corporate Presentation May 2025
Shaun Heinrichs
 
CTG - 1Q2025 Business Update - website.pdf
CTG - 1Q2025 Business Update - website.pdfCTG - 1Q2025 Business Update - website.pdf
CTG - 1Q2025 Business Update - website.pdf
HcTrSoros
 
Module 1 -Understanding the MSME Landscape.pptx
Module 1 -Understanding the MSME Landscape.pptxModule 1 -Understanding the MSME Landscape.pptx
Module 1 -Understanding the MSME Landscape.pptx
benstud93
 
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
Module 2 - Diagnosing MSME Needs in Strategic Field Support for Sustainable M...
winstonjeria
 
Complete MEAN Stack Hiring Guide for Startups
Complete MEAN Stack Hiring Guide for StartupsComplete MEAN Stack Hiring Guide for Startups
Complete MEAN Stack Hiring Guide for Startups
Mobisoft Infotech
 
EEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
EEN Decentralized Online Training on AI & Green Innovation at Standort TirolEEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
EEN Decentralized Online Training on AI & Green Innovation at Standort Tirol
MIPLM
 
Paul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky - Wealth Of Knowledge And ExpertisePaul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky - Wealth Of Knowledge And Expertise
Paul Turovsky
 
Solaris Resources Corporate Presentation
Solaris Resources Corporate PresentationSolaris Resources Corporate Presentation
Solaris Resources Corporate Presentation
pchambers2
 
To AI, or Not to AI - AI / Copilot session during Engage 2025
To AI, or Not to AI - AI / Copilot session during Engage 2025To AI, or Not to AI - AI / Copilot session during Engage 2025
To AI, or Not to AI - AI / Copilot session during Engage 2025
Roland Driesen
 
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
Best Practices for Implementing BPMS 2.0 with BPMN: Enhancing Process Efficie...
RUPAL AGARWAL
 
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
bomay69950
 
Transformation journey of a leading NBFC
Transformation journey of a leading NBFCTransformation journey of a leading NBFC
Transformation journey of a leading NBFC
PeopleWiz Consulting
 
Appreciations - May 25 (3).pptx Newsletter
Appreciations - May 25 (3).pptx NewsletterAppreciations - May 25 (3).pptx Newsletter
Appreciations - May 25 (3).pptx Newsletter
sunnycochrane46
 
Module 4 - Strengthening Financial Resilience.pptx
Module 4 - Strengthening Financial Resilience.pptxModule 4 - Strengthening Financial Resilience.pptx
Module 4 - Strengthening Financial Resilience.pptx
winstonjeria
 
Effectively Deploying Artificial Intelligence Strategy at Scale
Effectively Deploying Artificial Intelligence Strategy at ScaleEffectively Deploying Artificial Intelligence Strategy at Scale
Effectively Deploying Artificial Intelligence Strategy at Scale
RocketSource
 
Stop Ad Fraud in Its Tracks – With mFilterIt.pptx
Stop Ad Fraud in Its Tracks – With mFilterIt.pptxStop Ad Fraud in Its Tracks – With mFilterIt.pptx
Stop Ad Fraud in Its Tracks – With mFilterIt.pptx
mFilterIt
 
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Mykhailo Hryhorash: Архітектура IT-рішень (Частина 1) (UA)
Lviv Startup Club
 
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About StorytellingRobbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan
 
Joseph Solinger - A Dynamic Professional Journey
Joseph Solinger - A Dynamic Professional JourneyJoseph Solinger - A Dynamic Professional Journey
Joseph Solinger - A Dynamic Professional Journey
Joseph Solinger
 
AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025
MIPLM
 
1911 Gold Corporate Presentation May 2025
1911 Gold Corporate Presentation May 20251911 Gold Corporate Presentation May 2025
1911 Gold Corporate Presentation May 2025
Shaun Heinrichs
 

A Short Introduction To jQuery

  • 1. Sudar ( http://SudarMuthu.com ) WebCamp Chennai – 23 Feb 2008
  • 2. Famous Client – Side frameworks jQuery Prototype Yahoo User Interface Library (YUI) Dojo Rico WebCamp - Chennai http://SudarMuthu.com
  • 3. The $() function Build around CSS selectors WordPress has started to use jQuery Lots of Plugins Can be used with other libraries Doesn’t hijack the global namespace Small Size (Just 15 KB after Minified and Gzipped) Write Less, Do More WebCamp - Chennai http://SudarMuthu.com
  • 4. Matches a set of elements and returns a collection. Uses CSS Selectors $ (‘#comment’) $(‘div.comment’) $(‘div#content h2’) $(‘input:password’) $(‘a[href^=“http://”]’) $(‘ul#nav > li’) You can also use jQuery() instead of $() WebCamp - Chennai http://SudarMuthu.com
  • 5. $ (‘h2:first’) $(‘h2:last’) $(‘p:visible’) $(‘p:hidden’) $(‘input:password’) $(‘input:text’) $(‘p:odd’) WebCamp - Chennai http://SudarMuthu.com
  • 6. The $ () function returns a collection consisting of the elements that match the selector. It is similar to an array, but not exactly same. You can use $(‘p.special’).length or $(‘p.special’).size() Both return the number of matched elements WebCamp - Chennai http://SudarMuthu.com
  • 7. You can use .each() to iterate the collection $(‘p.special’).each(function () { alert (this); }); $(‘p.special’)[0] – First element $(‘p.special’)[1] - Second element WebCamp - Chennai http://SudarMuthu.com
  • 8. Access a property of matched element $(‘img#header’).attr(‘src’) – returns the src attribute $(‘img#header’).attr(‘src’, ‘http://e.in/head.gif’) Set the src attribute WebCamp - Chennai http://SudarMuthu.com
  • 9. val() – Get the value of the input element var singleValue = $(‘#single’).val(); val(val) – Set the value of an input element $(&quot;input:text&quot;). val (“Value Text”); $(“#multiple”).val([“multiple1”, “multiple2”]); WebCamp - Chennai http://SudarMuthu.com
  • 10. $(‘img#header’).addClass(‘highlighted’) $(‘img#header’).removeClass(‘highlighted’) $(‘img#header’).toggleClass(‘highlighted’) var hasBar = #(‘img#header’).hasClass(‘special’) $(‘p.special’).css(‘font-size’, ’12px’ ) $(‘p.special’).css({‘font-size’:’12px’, ‘color’:’red’ }) WebCamp - Chennai http://SudarMuthu.com
  • 11. Similar to innerHTML $(‘span#error’).text(“There is some error”) $(‘div#msg’).html(“<strong>Message</strong>”) WebCamp - Chennai http://SudarMuthu.com
  • 12. $(‘span#msg’).show() Also show(speed, [callback]) $(‘span#msg’).show(“fast”, function() { alert (“Done”); }); $(‘span#msg’).hide() Also hide(speed, [callback]) WebCamp - Chennai http://SudarMuthu.com
  • 13. toggle() fadeIn() fadeOut() fadeTo() slideUp() slideDown() animate() stop() WebCamp - Chennai http://SudarMuthu.com
  • 14. Enhanced methods for traversing DOM $(‘div#nav’).parent() $(‘div#nav’).next() $(‘div#nav’).prev() $(‘div#nav’).nextAll(‘a’) WebCamp - Chennai http://SudarMuthu.com
  • 15. Enhanced methods for manipulating DOM after(content) append(content) before(content) clone() empty() remove(expr) WebCamp - Chennai http://SudarMuthu.com
  • 16. Provides methods for assigning events in a cross browser way $(‘div#msg’).click(function(ev) { $(this).css(‘color’, ‘red’); alert(‘Clicked’); }); Lot of other handlers also available WebCamp - Chennai http://SudarMuthu.com
  • 17. Alternate to onLoad event $(document).ready(function() { alert (“DOM is Ready”); }); You can also use $(function() { alert (“DOM is Ready”); }); WebCamp - Chennai http://SudarMuthu.com
  • 18. jQuery has excellent support for AJAX $(‘div#msg’).load(‘/dir/file.html’) You can also use other advanced methods $.get(url, params, callback) $.post(url, params, callback) $.getJSON(url, params, callback) $.getScript(url, callback) WebCamp - Chennai http://SudarMuthu.com
  • 19. $.trim(str) $.browser if ($.browser.safari) { alert(“This is Safari”); } You can also use safari opera msie Mozilla $.each(object, callback) WebCamp - Chennai http://SudarMuthu.com
  • 20. Lot of Plugins available for Form Validation Drop down Menus UI Drag and Drop Etc.., Official Plugin repository at http://plugins.jquery.com/ WebCamp - Chennai http://SudarMuthu.com
  • 21. http://jquery.com – Official Site http://docs.jquery.com - Documentation http://plugins.jquery.com – Plugin repositry http://visualjquery.com – API Reference http://sudarmuthu.com/blog/tag/jquery - My blog posts about jQuery WebCamp - Chennai http://SudarMuthu.com