SlideShare a Scribd company logo
Mohammad AmzadHossainI am a FAN of NarutoProject Manager  @ jhoroTEK.comhttp://tohin.wordpress.comwww.twitter.com/neotohinwww.slideshare.net/neotohinwww.linkedin.com/in/tohinwww.jhorotek.com
THIS PAST        &     PRESENTTHAT
World Total 513.41 million Africa 4.15 million Asia/Pacific 143.99 million Europe 154.63 million Middle East 4.65million Canada & USA 180.68 million Latin America 25.33 million
Total Number of people ONLINE 			- By August 2001
More Than 350 Million50% active users 35 million ppl updates status each day2.5 Billion photos updated
FACEBOOK(2009)
UsabilityShinyFUN
“When I took office, only high energy physicistshad ever heard of what is called the World WideWeb... Now even my cat has it's own page.”- Bill Clinton
What’s Possible?http://eprothomalo.com/
What’s Possible?http://www.krhgallery.com/web/Faux Effect using jQuery
What’s Possible?http://balldroppings.com/js/SEE IT FOR YOURSELF   .. YOU WILL LIKE IT   .. Except Internet Explorer 
What’s Possible?Facebook  [http://www.facebook.com/ ] you know what it’s for ? :DMafia
What’s Possible?EyeOS [ www.eyeos.com ] is the Open Source Cloud Computing's Web Desktop Qooxdoo[ http://qooxdoo.org/  ] Leveraging object-oriented JavaScript allows developers to build impressive cross-browser applications
What’s Possible?Phpanywhere [http://phpanywhere.net/ ] is an online IDE
Some Morehttp://demo.tutorialzine.com/2009/12/colorful-clock-jquery-css/demo.htmlhttp://robot.anthonycalzadilla.com/http://www.digital-web.com/extras/jquery_crash_course/http://www.bennadel.com/resources/demo/jquery_puzzle/
Google	http://mail.google.com/mail/http://www.google.com/reader/http://www.google.com/calendar/http://docs.google.com
FUTURE
JavaScript	A scripting programming language most commonly used to add interactive features to webpagesen.wiktionary.org/wiki/JavaScriptSearch Google with: ‘define:JavaScript’
Most Common Usealert(‘You failed to learn BODY CLONE Jutsu!’);confirm(‘Are you sure you want to buy suriken ??’);document.getElementById(‘sword’).innerHTML = ‘OK’;document.getElementById(‘sword’).style.backgroundColor = ‘#cccccc’;
JavaScriptNot Just for Basic CalculationNot Just for Alert and ConfirmNot Just for Input Validation Not Just for Show and HideNot Just for GO BACK
DO YOU wANTTO BE A ?JAVASCRIPT NINJA
jQuery?
Introduction to Jquery
JavaScript Library why ?Easier DevelopmentBrowser IndependentAJAX [ Buzz word ] Operation http://en.wikipedia.org/wiki/JavaScript_library
http://en.wikipedia.org/wiki/List_of_JavaScript_librariesjQuery“The Write Less, Do More , JavaScript Library”jQuery is
Fast and concise JavaScript Library
Simplifies
HTML document traversing
event handling
animating,
Ajax interactions for rapid web development
Current Version: 1.4.2  ( minified 24KB, dev 155KB )jQuery why ??“I am not saying jQuery is best for you. But could be”Plugins
http://www.slideshare.net/jeresig/javascript-library-overview-presentation
http://stackoverflow.com/questions/798840/what-should-i-choose-jquery-mootools-yui-scriptaculous-or-prototypeHow to Embed ?Download Latest Version of jQueryEmbed it as like other external JavaScript fileThat’s it <html><head><scripttype="text/javascript"src='./js/jquery.js'></script><scripttype="text/javascript">                       $(function(){                               alert('Yeah Jquery Works!');                       });</script></head></html>
Important FactorsSelectorsAttributesTraversingManipulationCSSEventsEffectsAjaxUtiliteshttp://docs.jquery.com/               [ API Reference Section]
Selectors in jQueryhttp://docs.jquery.com/Selectors
Examplehttp://visualjquery.com/
jQuery Collection$(‘#some_id’)  return jQuery CollectionYou can treat it likeAs Array $(‘#some_id’)[0]$(‘#some_id’).lengthAs Method$(‘#some_id’).size() 	/* matched element count*/$(‘#some_id’).click(function() { alert(‘clicked’); });
Traversinghttp://docs.jquery.com/Traversing
Handling Eventshttp://docs.jquery.com/Events
Effectshttp://docs.jquery.com/Effects
AJAX or AJAH using JavaScriptif(typeofXMLHttpRequest !== 'undefined') xhr = new XMLHttpRequest(); else { var versions = ["Microsoft.XmlHttp", "MSXML2.XmlHttp", "MSXML2.XmlHttp.3.0", "MSXML2.XmlHttp.4.0", "MSXML2.XmlHttp.5.0"];       for(vari = 0, len = versions.length; i < len; i++) {                 try { xhr = new ActiveXObject(versions[i]); break;                          } catch(e){}         } // end for }http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript-part-2/
AJAX or AJAHusing JQuery	$.post('http://localhost/presentation/ajax.html',function(data) {$('#conatiner').html( data );});
Ad

More Related Content

What's hot (20)

Real World Web components
Real World Web componentsReal World Web components
Real World Web components
Jarrod Overson
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
Gonzalo Parra
 
Rapid Testing, Rapid Development
Rapid Testing, Rapid DevelopmentRapid Testing, Rapid Development
Rapid Testing, Rapid Development
mennovanslooten
 
Django の認証処理実装パターン / Django Authentication Patterns
Django の認証処理実装パターン / Django Authentication PatternsDjango の認証処理実装パターン / Django Authentication Patterns
Django の認証処理実装パターン / Django Authentication Patterns
Masashi Shibata
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
Pablo Garrido
 
Beyond DOM Manipulations: Building Stateful Modules with Events and Promises
Beyond DOM Manipulations: Building Stateful Modules with Events and PromisesBeyond DOM Manipulations: Building Stateful Modules with Events and Promises
Beyond DOM Manipulations: Building Stateful Modules with Events and Promises
Crashlytics
 
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
careersblog
 
Intro to jQuery
Intro to jQueryIntro to jQuery
Intro to jQuery
Ralph Whitbeck
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt
 
New text documentfsdfs
New text documentfsdfsNew text documentfsdfs
New text documentfsdfs
Ah Lom
 
Overview on jQuery mobile
Overview on jQuery mobileOverview on jQuery mobile
Overview on jQuery mobile
Md. Ziaul Haq
 
Jquery tutorial
Jquery tutorialJquery tutorial
Jquery tutorial
HarikaReddy115
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery Mobile
Pablo Garrido
 
Intro to jQuery - LUGOR - Part 1
Intro to jQuery - LUGOR - Part 1Intro to jQuery - LUGOR - Part 1
Intro to jQuery - LUGOR - Part 1
Ralph Whitbeck
 
jQuery Mobile with HTML5
jQuery Mobile with HTML5jQuery Mobile with HTML5
jQuery Mobile with HTML5
madhurpgarg
 
jQuery Conference Toronto
jQuery Conference TorontojQuery Conference Toronto
jQuery Conference Toronto
dmethvin
 
Javascript MVC & Backbone Tips & Tricks
Javascript MVC & Backbone Tips & TricksJavascript MVC & Backbone Tips & Tricks
Javascript MVC & Backbone Tips & Tricks
Hjörtur Hilmarsson
 
Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile framework
Rishabh Rao
 
Introduction to jquery mobile with Phonegap
Introduction to jquery mobile with PhonegapIntroduction to jquery mobile with Phonegap
Introduction to jquery mobile with Phonegap
Rakesh Jha
 
Game Development Using HTML 5
Game Development Using HTML 5Game Development Using HTML 5
Game Development Using HTML 5
osa_ora
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
Jarrod Overson
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
Gonzalo Parra
 
Rapid Testing, Rapid Development
Rapid Testing, Rapid DevelopmentRapid Testing, Rapid Development
Rapid Testing, Rapid Development
mennovanslooten
 
Django の認証処理実装パターン / Django Authentication Patterns
Django の認証処理実装パターン / Django Authentication PatternsDjango の認証処理実装パターン / Django Authentication Patterns
Django の認証処理実装パターン / Django Authentication Patterns
Masashi Shibata
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
Pablo Garrido
 
Beyond DOM Manipulations: Building Stateful Modules with Events and Promises
Beyond DOM Manipulations: Building Stateful Modules with Events and PromisesBeyond DOM Manipulations: Building Stateful Modules with Events and Promises
Beyond DOM Manipulations: Building Stateful Modules with Events and Promises
Crashlytics
 
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
Jqueryforbeginnersjqueryconference2009 090914063709 Phpapp02
careersblog
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt
 
New text documentfsdfs
New text documentfsdfsNew text documentfsdfs
New text documentfsdfs
Ah Lom
 
Overview on jQuery mobile
Overview on jQuery mobileOverview on jQuery mobile
Overview on jQuery mobile
Md. Ziaul Haq
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery Mobile
Pablo Garrido
 
Intro to jQuery - LUGOR - Part 1
Intro to jQuery - LUGOR - Part 1Intro to jQuery - LUGOR - Part 1
Intro to jQuery - LUGOR - Part 1
Ralph Whitbeck
 
jQuery Mobile with HTML5
jQuery Mobile with HTML5jQuery Mobile with HTML5
jQuery Mobile with HTML5
madhurpgarg
 
jQuery Conference Toronto
jQuery Conference TorontojQuery Conference Toronto
jQuery Conference Toronto
dmethvin
 
Javascript MVC & Backbone Tips & Tricks
Javascript MVC & Backbone Tips & TricksJavascript MVC & Backbone Tips & Tricks
Javascript MVC & Backbone Tips & Tricks
Hjörtur Hilmarsson
 
Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile framework
Rishabh Rao
 
Introduction to jquery mobile with Phonegap
Introduction to jquery mobile with PhonegapIntroduction to jquery mobile with Phonegap
Introduction to jquery mobile with Phonegap
Rakesh Jha
 
Game Development Using HTML 5
Game Development Using HTML 5Game Development Using HTML 5
Game Development Using HTML 5
osa_ora
 

Viewers also liked (8)

Audiovisual collections, the spoken word and user needs of scholars in the Hu...
Audiovisual collections, the spoken word and user needs of scholars in the Hu...Audiovisual collections, the spoken word and user needs of scholars in the Hu...
Audiovisual collections, the spoken word and user needs of scholars in the Hu...
roelandordelman.nl
 
Teacher’s longlife training in virtual environments
Teacher’s longlife training in virtual environmentsTeacher’s longlife training in virtual environments
Teacher’s longlife training in virtual environments
Adelina Silva
 
Comprehensive Team Training
Comprehensive Team TrainingComprehensive Team Training
Comprehensive Team Training
Mike Huber
 
Audio visual aids
Audio visual aidsAudio visual aids
Audio visual aids
Dr. Shri Kant Dwivedi
 
Audio visual aids pt
Audio visual aids ptAudio visual aids pt
Audio visual aids pt
Jolly George
 
audio visual aids presentation 2012
audio visual aids presentation 2012audio visual aids presentation 2012
audio visual aids presentation 2012
ucte vaikom_dipu arayankavu
 
Training and development slides (2)
Training and development slides (2)Training and development slides (2)
Training and development slides (2)
School of Management Studies(NIT calicut)
 
Audio visual aids
Audio visual aidsAudio visual aids
Audio visual aids
Priya Dharshini
 
Audiovisual collections, the spoken word and user needs of scholars in the Hu...
Audiovisual collections, the spoken word and user needs of scholars in the Hu...Audiovisual collections, the spoken word and user needs of scholars in the Hu...
Audiovisual collections, the spoken word and user needs of scholars in the Hu...
roelandordelman.nl
 
Teacher’s longlife training in virtual environments
Teacher’s longlife training in virtual environmentsTeacher’s longlife training in virtual environments
Teacher’s longlife training in virtual environments
Adelina Silva
 
Comprehensive Team Training
Comprehensive Team TrainingComprehensive Team Training
Comprehensive Team Training
Mike Huber
 
Audio visual aids pt
Audio visual aids ptAudio visual aids pt
Audio visual aids pt
Jolly George
 
Ad

Similar to Introduction to Jquery (20)

J Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham SiddiquiJ Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham Siddiqui
Muhammad Ehtisham Siddiqui
 
jQuery
jQueryjQuery
jQuery
PumoTechnovation
 
jQuery for web development
jQuery for web developmentjQuery for web development
jQuery for web development
iFour Institute - Sustainable Learning
 
J Query Presentation
J Query PresentationJ Query Presentation
J Query Presentation
Vishal Kumar
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and Modernizr
Jussi Pohjolainen
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Collaboration Technologies
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery Basics
Kaloyan Kosev
 
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwapptJquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
shubhangimalas1
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Doncho Minkov
 
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
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
Achmad Solichin
 
Stack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for DevelopersStack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for Developers
Jonathan Sharp
 
J Query - Your First Steps
J Query - Your First StepsJ Query - Your First Steps
J Query - Your First Steps
Bronson Quick
 
jQuery For Developers Stack Overflow Dev Days Toronto
jQuery For Developers Stack Overflow Dev Days TorontojQuery For Developers Stack Overflow Dev Days Toronto
jQuery For Developers Stack Overflow Dev Days Toronto
Ralph Whitbeck
 
Unobtrusive javascript with jQuery
Unobtrusive javascript with jQueryUnobtrusive javascript with jQuery
Unobtrusive javascript with jQuery
Angel Ruiz
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
The Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQueryThe Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQuery
colinbdclark
 
JQuery
JQueryJQuery
JQuery
baabtra.com - No. 1 supplier of quality freshers
 
JQuery
JQueryJQuery
JQuery
baabtra.com - No. 1 supplier of quality freshers
 
Building Web Hack Interfaces
Building Web Hack InterfacesBuilding Web Hack Interfaces
Building Web Hack Interfaces
Christian Heilmann
 
J Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham SiddiquiJ Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham Siddiqui
Muhammad Ehtisham Siddiqui
 
J Query Presentation
J Query PresentationJ Query Presentation
J Query Presentation
Vishal Kumar
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and Modernizr
Jussi Pohjolainen
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery Basics
Kaloyan Kosev
 
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwapptJquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
shubhangimalas1
 
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
 
Stack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for DevelopersStack Overflow Austin - jQuery for Developers
Stack Overflow Austin - jQuery for Developers
Jonathan Sharp
 
J Query - Your First Steps
J Query - Your First StepsJ Query - Your First Steps
J Query - Your First Steps
Bronson Quick
 
jQuery For Developers Stack Overflow Dev Days Toronto
jQuery For Developers Stack Overflow Dev Days TorontojQuery For Developers Stack Overflow Dev Days Toronto
jQuery For Developers Stack Overflow Dev Days Toronto
Ralph Whitbeck
 
Unobtrusive javascript with jQuery
Unobtrusive javascript with jQueryUnobtrusive javascript with jQuery
Unobtrusive javascript with jQuery
Angel Ruiz
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
The Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQueryThe Inclusive Web: hands-on with HTML5 and jQuery
The Inclusive Web: hands-on with HTML5 and jQuery
colinbdclark
 
Ad

Introduction to Jquery