SlideShare a Scribd company logo
jQuery Mobile
jQuery MobileBrief HistoryWebMobileJSVMWhy?jQueryjQuery Mobile
Brief History of Web Languages1991	HTML Tags1995	HTML 2	LiveScript1996			JScript, EcmaScript			CSS 11997	HTML 31997	HTML 41998			EcmaScript 1 & 2, JavaScript 1.3	CSS 21999								CSS 32000	XHTML 1.0	EcmaScript 3, JavaScript 1.52001	XHTML 1.12005	 		JavaScript 1.62006			JavaScript 1.7, jQuery2008	HTML 5	JavaScript 1.82010			EcmaScript 5, JavaScript 1.8.5
Brief History of Mobile1900 – Reginald Fessenden1901 – First transatlantic radio transmission Guglielmo Marconi1946 – First mobile phone 	call
Brief History of Mobile
Brief History of Mobile1GDynaTAC 8000X
Brief History of Mobile2G1GDynaTAC 8000X
Brief History of Mobile3GSmartphones2GWAP1GDynaTAC 8000X
Brief History of Mobile4GAndroidiPhone3GSmartphones2GWAP1GDynaTAC 8000X
Culmination of Awesome
With Some Not So AwesomeStandards vs. evolutionBrowser implementationsDevice differencesDesktopPhoneTabletOperating systemsApp stores
Browsers
Operating Systems
Trend Trends
With Some Not So AwesomeiOSAndroidBlackberryPalmSymbianWindowsMeeGoDesktop
With Some Not So AwesomeiOSAndroidBlackberryPalmTablet 1.0.72.0FroyoIce Cream Sandwich13GTablet 1.0.273.04G4.551.41.23GSGingerbreadHoneycomb4.66OperaFirefox1.1.99Mobile 51Symbian^3Symbian^2Mobile 6Safari1.3Phone 7IESymbian^1Symbian^41.2SymbianWindowsMeeGoDesktop
With Some Not So AwesomeiOSAndroidBlackberryPalmTablet 1.0.72.0FroyoIce Cream Sandwich13GTablet 1.0.273.04G4.551.41.23GSGingerbreadHoneycomb4.66OperaFirefox1.1.99Mobile 51Symbian^3Symbian^2Mobile 6Safari1.3Phone 7IESymbian^1Symbian^41.2SymbianWindowsMeeGoDesktop
App Stores111 app storesAndroid MarketApp CatalogApp StoreApp WorldOvi StoreWindows Phone MarketplaceAmazon
JSVM
JSVMCross-browser supportDOM manipulationCSS manipulationAJAXSelectorsEvent handlingUtilitiesWidgetsEffects & animationProgressive enhancement/Graceful degredationPlugins
Why jQuery?FreeChoose your licenseSmallActive, vibrant communityPopularMature set of widgetsEasy to get help
Easy to Get jQuery Help
Why jQuery Mobile?Top Job TrendsHTML5Mobile appAndroid Twitter jQueryFacebookSocial Media iPhoneCloud Computing Virtualization
jQueryStarted Aug 200631 KBUsed by 43% of top 10,000 most visited sitesLicenses: GPL or MITEcosystemjQuery CorejQuery UIjQuery MobileQUnitSizzlePlugins
jQueryIs $$(document).ready(…)Element selectionByTag nameCSS classIDHierarchySizzleW3C Selectors APIThemeable
jQuery MobileStarted October 2010Currently 1.0 Beta 2Feature completeLicenses: GPL or MIT26 KBMarkup drivenLeverages HTML5 data- attributesThemeableAccessibility (WAI-ARIA)Touch eventsTouch focused UI
<!doctypehtml><html><head>    <link rel="stylesheet"href="jquery.mobile.css"/>    <script src="jquery.js"></script>    <script src="jquery.mobile.js"></script></head>
<div data-role="page"id="page1">    <div data-role="header">Page 1 title        <a href="index.html"data-icon="check">Save</a>        <a href="index.html"data-icon="delete">Delete</a>    </div>    <div data-role="content">Content goes here.  Go to <a href="#page2">Page 2</a>.    </div>    <div data-role="footer">Page 1 footer        <a href="index.html"data-icon="star">Star</a>        <a href="index.html" data-icon="info">Info</a>        <a href="index.html"data-icon="alert">Alert</a>        <a href="index.html"data-icon="plus">Plus</a>        <a href="index.html"data-icon="minus">Minus</a>    </div></div>
<div data-role="page"id="page2">    <div data-role="header">Page 2 title</div>    <div data-role="content">Content goes here.        Open <a href="index.html"data-transition="pop"data-rel="dialog">dialog</a>.        <form>            <select data-role="slider">                <option value="on">On</option>                <option value="off">Off</option>            </select>        </form>    </div>    <div data-role="footer">Page 2 footer</div></div>
TransitionsslideSlide right to left (default)slideupSlide from the bottom to the topslidedownSlide from the top to the bottompopExpand the new page for popups and dialogsfadeFade the new page inflipFlip the old and new page
RolesButtonsdata-role="button"submit, reset, button, or imageCollapsible contentdata-role="collapsible" data-state="collapsed"FormAutomatically replaces form elementsdata-role="slider"<div data-role="fieldcontain"> - select<div data-role="controlgroup"> - grouped 		buttonsDialogsdata-rel="dialog"
List Views<ul data-role="listview">Adds > to the right side of linksDividersThumbnailsCount bubblesNested listsSplit button
$.mobile$.mobile.changePage$.mobile.changePage("weblog.php", "slide")$.mobile.pageLoading$.mobile.pageLoading()	// show$.mobile.pageLoading(true)	// hide$.mobile.silentScroll$.mobile.silentScroll(100)$.mobile.addResolutionBreakpoints$.mobile.addResolutionBreakpoints(800)$.mobile.activePage
Touch EventstaptapholdswipeVertically 20 or fewer pixelsHorizontally 30 or more pixelsSwipeleftLeft 30 or more pixelsswiperightRight 30 or more pixels
Page Eventspagebeforehideon the page being transitioned from, before the transition between pages startspagebeforeshowon the page being transitioned to, before the transition between pages startspagehideon the page being transitioned from, after the transition finishespageshowon the page being transitioned to, after the transition finishes
Other EventsscrollstartscrollstoporientationchangePasses orientation as “portrait” or “landscape”Applies .landscape or .portrait CSS classes
Handling Screen sizesDefault breakpoints 320, 480, 768, 1024.min-width-320px #mainPage,.max-width-480px #mainPage {background-image: url(images/main-bg-320.jpg);}.min-width-480px #mainPage,.max-width-768px #mainPage {background-image:url(images/main-bg-480.jpg);}.min-width-768px #mainPage,.max-width-1024px #mainPage {background:navy;}
Media Queriesmedia="screen"media="print"http://www.w3.org/TR/css3-mediaqueries/$.mobile.media<script>varretinaDisplay = $.mobile.media("-webkit-min-device-pixel-ratio: 2");if (retinaDisplay) {  $("#content").css("background-image", "url('images/bg-retina.png')");}</script>
Demo
Platform SupportA GradeiOSAndroidWindows Phone 7BlackberryPalm WebOSOpera MobileKindle 3Chrome DesktopFirefox DesktopIE DesktopOpera Desktop
CompetitorsjQTouchjQuery PluginFocused on WebKitSencha TouchExt JSTitanium MobileCompiles JavaScript to nativeiOS and AndroidXUIZepto
Gaps & The FutureAccess to peripheralsPhoneGapW3C Device API working groupWebIntents
Linkshttp://jquerymobile.com/http://www.jqmgallery.com/http://www.ibm.com/developerworks/web/library/wa-jqmobile/
Attributionshttp://keyolhubey.blogspot.com/2009/11/telecommunication-services-in-maldives.htmlhttp://xahlee.blogspot.com/2011/05/html-css-javascript-web-tech-and.htmlhttp://en.wikipedia.org/wiki/Motorola_DynaTAChttp://en.wikipedia.org/wiki/History_of_radiohttp://www.flickr.com/photos/zerok/465343120/http://www.flickr.com/photos/shodan/19555323 4/http://www.flickr.com/photos/mellis/3019296692/http://www.flickr.com/photos/29881266@N08/3196645048/

More Related Content

PDF
jQueryMobile Jump Start
PPTX
Introduction to the jQuery mobile framework
PPTX
Introduction to jQuery Mobile
PDF
Overview on jQuery mobile
PPTX
Introduction to jquery mobile with Phonegap
PPTX
jQuery Mobile
PPT
jQuery Mobile with HTML5
PDF
Advanced JQuery Mobile tutorial with Phonegap
jQueryMobile Jump Start
Introduction to the jQuery mobile framework
Introduction to jQuery Mobile
Overview on jQuery mobile
Introduction to jquery mobile with Phonegap
jQuery Mobile
jQuery Mobile with HTML5
Advanced JQuery Mobile tutorial with Phonegap

What's hot (20)

PDF
What is jQuery?
PPTX
jQuery Mobile UI
PDF
jQuery Mobile: Progressive Enhancement with HTML5
PPTX
Adobe & HTML5
PDF
Fundamental JQuery
PDF
Real World Web components
PDF
Accessibility - A feature you can build
PPTX
Building jQuery Mobile Web Apps
PPTX
jQuery Conference Chicago - September 2014
PDF
jQuery Mobile Hour 4
PPTX
jQuery Mobile Introduction ( demo on EZoapp )
PPTX
Harness jQuery Templates and Data Link
PDF
jQuery Mobile Hour 4
PPTX
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
PPTX
J Query Presentation
PPTX
JsViews - Next Generation jQuery Templates
PDF
Devoxx 2014-webComponents
PPT
Don't Worry jQuery is very Easy:Learning Tips For jQuery
PDF
State of jQuery June 2013 - Portland
PDF
Building Mobile Applications with Ionic
What is jQuery?
jQuery Mobile UI
jQuery Mobile: Progressive Enhancement with HTML5
Adobe & HTML5
Fundamental JQuery
Real World Web components
Accessibility - A feature you can build
Building jQuery Mobile Web Apps
jQuery Conference Chicago - September 2014
jQuery Mobile Hour 4
jQuery Mobile Introduction ( demo on EZoapp )
Harness jQuery Templates and Data Link
jQuery Mobile Hour 4
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
J Query Presentation
JsViews - Next Generation jQuery Templates
Devoxx 2014-webComponents
Don't Worry jQuery is very Easy:Learning Tips For jQuery
State of jQuery June 2013 - Portland
Building Mobile Applications with Ionic
Ad

Similar to Jquery mobile (20)

PPT
jQuery Mobile
PPTX
Jquery mobile book review
PDF
Introduction to jQuery Mobile - Web Deliver for All
PDF
Mume JQueryMobile Intro
PDF
20111014 mu me_j_querymobile
PDF
JQuery mobile
PPTX
Introduction to j query mobile framework
PDF
jQuery Mobile Introduction
PPTX
Challenges going mobile
PDF
HTML5 and the dawn of rich mobile web applications pt 2
PDF
Start IoT with jQueryMobile - 기초1
PPTX
Jquery mobile
KEY
Beginning jQuery Mobile
PDF
Jquery mobile tutorial
PPT
Intro j query_mobile_mojo
PPTX
J query mobile tech talk
PPTX
Jquery mobile
PPTX
Intro to Jquery Mobile
PDF
HTML5 and Mobile
PPT
Creating mobile web apps
jQuery Mobile
Jquery mobile book review
Introduction to jQuery Mobile - Web Deliver for All
Mume JQueryMobile Intro
20111014 mu me_j_querymobile
JQuery mobile
Introduction to j query mobile framework
jQuery Mobile Introduction
Challenges going mobile
HTML5 and the dawn of rich mobile web applications pt 2
Start IoT with jQueryMobile - 기초1
Jquery mobile
Beginning jQuery Mobile
Jquery mobile tutorial
Intro j query_mobile_mojo
J query mobile tech talk
Jquery mobile
Intro to Jquery Mobile
HTML5 and Mobile
Creating mobile web apps
Ad

Recently uploaded (20)

PPTX
Big Data Technologies - Introduction.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Electronic commerce courselecture one. Pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Big Data Technologies - Introduction.pptx
MIND Revenue Release Quarter 2 2025 Press Release
20250228 LYD VKU AI Blended-Learning.pptx
Encapsulation_ Review paper, used for researhc scholars
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Electronic commerce courselecture one. Pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Chapter 3 Spatial Domain Image Processing.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Mobile App Security Testing_ A Comprehensive Guide.pdf
Programs and apps: productivity, graphics, security and other tools
Digital-Transformation-Roadmap-for-Companies.pptx
MYSQL Presentation for SQL database connectivity
Review of recent advances in non-invasive hemoglobin estimation
Spectral efficient network and resource selection model in 5G networks
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx

Jquery mobile

Editor's Notes

  • #6: June 1946 – first mobile phone callApril 1973 – first handheld mobile phone call Dr Martin Cooper Motorola1982 – Motorola DynaTAC 8000X1980s – 1G networks1990s – 2G networks1999 – WAP 2000 – Smartphones2000s – 3G networks2007 – iPhone2008 – Android 2010s – 4G