SlideShare una empresa de Scribd logo
1 de 114
jQuery Mobile Tutorial
        2013/02/05
        Mowd Chen
 jQuery Mobile
   Introduction
   Components
   API
What is jQuery Mobile?
 Unified user interface system.
 Works seamlessly across all popular mobile device
  platforms.

 Built on the rock-solid jQuery and jQuery UI foundation.
 Focused on a feature-rich but lightweight codebase.
 Built on progressive enhancement with a flexible
  theming system and ThemeRoller tool.
What is jQuery Mobile?
 Use ajax navigation system that brings animated page
  transitions and a core set of UI widgets
   Pages
   Dialogs
   Toolbars
   Listviews
   Buttons with icons
   Form elements
   Accordions
   Collapsibles
Supported platform
   Apple iOS 3.2*-6.0 - Tested on the original     Chrome for Android 18 - Tested on
    iPad (4.3 / 5.0), iPad 2 (4.3), iPad 3 (5.1 /    Android 4.0 and 4.1 deviceset
    6.0), original iPhone (3.1), iPhone 3
    (3.2), 3GS (4.3), 4 (4.3 / 5.0), and 4S (5.1    Chrome Desktop 11-21 - Tested on OS X
    / 6.0)                                           10.7 and Windows 7
   Android 2.1-2.3 - Tested on the HTC             Safari Desktop 4-5 - Tested on OS X 10.7
    Incredible (2.2), original Droid (2.2), HTC      and Windows 7
    Aria (2.1), Google Nexus S (2.3).
    Functional on 1.5 & 1.6 but performance
    may be sluggish, tested on Google G1            Firefox Desktop 4-15 - Tested on OS X
    (1.5)                                            10.7 and Windows 7

   Android 3.2 (Honeycomb) - Tested on the         Internet Explorer 7-10 - Tested on
    Samsung Galaxy Tab 10.1 and Motorola             Windows XP, Vista and 7
    XOOM
                                                    Opera Desktop 10-12 - Tested on OS X
   Android 4.0 (ICS) - Tested on a Galaxy           10.7 and Windows 7
    Nexus. Note: transition performance can
    be poor on upgraded devices

   Android 4.1 (Jelly Bean) - Tested on a
    Galaxy Nexus and Galaxy 7
Quick start: basic page
Quick start: listview
Quick start: slider
Quick start: button
Page & dialogs
Page & dialogs
 jQuery Mobile includes a navigation system to load
  linked pages into the DOM via AJAX, enhance the new
  content, then display pages with a rich set of animated
  page transitions. The navigation system automatically
  transforms all links and forms by using progressive
  enhancement to hijack links and issue AJAX requests.
 The back button is fully supported so
  pages, dialogs, and popups all seamlessly work with
  the navigation system. There are tools to prefetch &
  cache, dynamically inject, and script pages for
  advanced use cases.
Single page
Multi-page
Multi-page
 http://jquerymobile.com/demos/1.2.0/docs/pages/multip
  age-template.html
Page title
 jQuery Mobile automatically parses the title of the page
  pulled via Ajax and changes the title attribute of the
  parent document to match.

 In multi-page template, simply use:
Linking page
Linking page
 http://jquerymobile.com/demos/1.2.0/docs/pages/page-
  links.html
Page transitions
 http://jquerymobile.com/demos/1.2.0/docs/pages/page-
  transitions.html
Page transitions
 Custom the link transition


 Change the default transitions.
   Ex: $.mobile.defaultDialogTransition = „slide‟;
Page Loading Widget



 Deprecated
     $.mobile.loadingMessage
     $.mobile.loadingMessageTextVisible
     $.mobile.loadingMessageTheme
     $.mobile.showPageLoadingMsg()
     $.mobile.hidePageLoadingMsg()
Page Loading Widget
Dialog




<a href="foo.html" data-rel="dialog">Open dialog</a>
Dialog
 Transitions
   data-transition="pop”
 Open Dialog
   $(".selector”).dialog({ overlayTheme: "e" });
 Close dialog
   $('.selector').dialog('close');
Popup
 http://jquerymobile.com/demos/1.2.0/docs/pages/popup
  /index.html
Popup
 Transitions
   data-transition="flip”
 Open popup
   $( "#myPopupDiv" ).popup( "open" );
 Close popup
   $( "#myPopupDiv" ).popup( "close" );
Popup
 Add close button
   <a href="#" data-rel="back" data-role="button" data-
     theme="a" data-icon="delete" data-iconpos="notext"
     class="ui-btn-right">Close</a>

 Add padding
   <div data-role="popup" id="popupPadded" class="ui-
     content">

 Position choice: window, origin, #id
   <a href="#positionWindow" data-rel="popup" data-
     position-to="window">
Popup
 Theme
  <div id="both" data-role="popup" data-theme="e" data-
   overlay-theme="a" class="ui-content">
Prefetching & catching pages
 Prefetching
   <a href="prefetchThisPage.html" data-prefetch>..</a>
   $.mobile.loadPage( pageUrl, { showLoadMsg: false } );
 Catching pages (default: false)
   $.mobile.page.prototype.options.domCache = true;
   <div data-role="page” data-dom-cache="true">
Scripting pages
 pageinit = DOM ready




 Changing page
Scripting pages
 Scrolling to a position within a page




 Passing parameters between pages
   page params plugin
   jQuery Mobile router plugin
   localStorage or sessionStorage
Theme
 http://jquerymobile.com/demos/1.2.0/docs/pages/pages
  -themes.html
Toolbars
Toolbars
 Toolbar page elements are used for headers and
  footers throughout many mobile sites and applications.
  These scroll with the page by default, but can have
  fixed positioning and be persistent across pages.

 jQuery Mobile also provides a navbar component that
  can be used within any toolbar or the page content.
Header bars
Header bars
 Adding Back buttons
   Add data-add-back-btn="true” in page div.
   Add data-rel="back” in anchor.
Footer bars
Footer bars
 Fixed & Persistent footers
   Add data-position="fixed” in footer bar div.
Nav bars
Nav bars
Nav bars
 Icons in navbars
   Add data-icon in nav bars.
   Set the position by data-iconpos="top” (left, right, bottom)
Buttons
Buttons
 Buttons are core widgets in jQuery Mobile, and are
  used within a wide range of other plugins. The button
  markup is flexible and can be created from links or form
  buttons.

 Each button has a range of styling options including
  icons and positioning, inline and mini sizing, grouping
  sets, and theming.
Buttons
 q
Buttons
 Buttons support data-icon and data-iconpos.
   http://jquerymobile.com/demos/1.2.0/docs/buttons/buttons
     -icons.html


 Inline buttons
Buttons
 Grouped buttons
   Vertical




   Horizontal
     Add data-type="horizontal"
Content Formatting
Content Formatting
 Layout grids
     two-column (using the ui-grid-a class)
     three-column (using the ui-grid-b class)
     four-column (using the ui-grid-c class)
     five-column (using the ui-grid-d class)
Content Formatting
 Layout grids
   Buttons




   Toolbars
Content Formatting
 Collapsible content
   Add data-role="collapsible”.
   Closed




   Opened
Content Formatting
 Collapsible support data-icon and data-iconpos


 Collapsible content
   To expanding collapsibles on load, add data-
     collapsed="false”

 Non-inset collapisibles
   Add data-inset=“false”
Content Formatting
 Collapsible content
   Programmatically close collapsible content
     $( ".selector" ).trigger( "collapse" );
   Programmatically open collapsible content
     $( ".selector" ).trigger( "expand" );

 Custom icons
   data-collapsed-icon
   data-expanded-icon
   data-iconpos
Content Formatting
 Collapsible set (accordion)
Content Formatting
 Collapsible set (accordion)
Content Formatting
 Collapsible set (accordion)
   If the collapsible has been update by script, use
    $( ".selector" ).collapsibleset( "refresh" );
Forms
Forms
 All form widgets begin with native form elements with
  rich HTML semantics that are enhanced to make them
  more attractive and easy to use. In browsers that don't
  support the custom controls, they will still have a usable
  experience.

 Most common form elements are included: text
  inputs, search, sliders, flip toggle switches, radio
  buttons, checkboxes, and select menus. Available in
  standard and mini sized versions.
Forms
 Forms
   <form action="form.php" method="post"> ... </form>
 Mini sized elements
   <input type="text" name="name" id="basic" data-
    mini="true" />

 Labels
   All elements need to pair with label, but you can hide the
    label using class="ui-hidden-accessible”.
Forms
 Disable element
   Add ui-disabled class to disable elements.
 Field containers
Forms
 Refresh elements
Forms
 Use the original form element.
   Add data-role="none"
Text inputs & Textareas
 Example 1




 Example 2
Text inputs & Textareas
 Input type support list
      Text
      Password
      Number
      Number + pattern
      Email
      Url
      Tel
      Time
      Date
      Month
      Week
      Datetime
      Datetime local
      Color
Text inputs & Textareas
 Disable a textinput
   $('.selector').textinput('disable'); (enable)
Text inputs & Textareas
 Textarea
Search input
 Add input type=“search”
Slider
 Add input type=“range”
Slider
 Available parameter
   step
   data-highlight="true”




 Programmatically control slider
   $('input').slider(); (enable, disable, refresh)
Flip toggle switch
 A binary selector




 Programmatically control flip toggle switch
   $('select').slider();
Flip toggle switch
 Loner labels
Radio buttons
Radio buttons
 Horizontal radio buttons




 Programmatically control radio buttons
   $("input[type='radio']").checkboxradio();
    (enable, disable, refresh)
Checkboxes
Checkboxes
 Contain checkboxes in <fieldset data-
  role="controlgroup">
Checkboxes
 Add data-type="horizontal” in fieldset




 Programmatically control checkboxes
   $("input[type='checkbox']").checkboxradio(); (enable,
     disable, refresh)
Select menus
Select menus
 Support optgroup
  <optgroup label="FedEx">
       <option value="firstOvernight">First Overnight</option>
       <option value="expressSaver">Express Saver</option>
       <option value="ground">Ground</option>
  </optgroup>
Selected menus
 Add <fieldset data-role="controlgroup">
   Vertical menus




   Horizontal menus: data-type="horizontal"
Select menus
 To use custom menus, add the data-native-
  menu="false”
   Support multiple="multiple”, optgroup
Select menus
 Programmatically control select menus
   $('select').selectmenu();
       enable
       disable
       open (custom menus only)
       close
       refresh
Listviews
Listviews
 Lists are used for data display, navigation, result
  lists, and data entry so jQuery Mobile includes a wide
  range of list types and formatting examples to cover
  most common design patterns. All lists start with simple
  HTML list markup and include styling for read-
  only, linked, numbered, nested, collapsible lists and
  more.
 Listviews are full width by default but can be set to be
  inset styled. To make development easy, there are
  simple ways to add a search filter and automatic
  dividers.
Basic listview
 Add data-role=“listview” in ul.




 Programmatically control listviews
   $('.selector').listview('refresh');
Nested list
 http://jquerymobile.com/demos/1.2.0/docs/lists/lists-
  nested.html
Numbered list
Split button list
List dividers
List dividers
 Auto generate list dividers
   Add data-autodividers="true” in ul.
Count bubble
Thumbnails
Icons
List formatting
Inset list
 Add data-inset="true” in ul.
Search filter bar
 Add data-filter=“true” in ul.
   http://jquerymobile.com/demos/1.2.0/docs/lists/lists-
     search.html
Search filter bar
 To search hidden data in list
   Add data-filtertext=“some text” in li.
Readonly lists
Collapsible lists
 Add data-role="collapsible” to the parent of ul.
API
Configuring default
Configuring default
 Configurable options
     activePageClass, string, default: "ui-page-active”
     defaultDialogTransition, string, default: 'pop‟
     defaultPageTransition, string, default: 'fade‟
     pushStateEnabled, boolean, default: true
Touch events
 $(“.target”).bind(“tap”,function() {});
 tap
 taphold
 swipe
 swipeleft
 swiperight
Orientation change event
 $(document).bind(“orientationchange”, function(event)
  {});
   Return event.orientation = portrait or landscape
 To use original resize javascript function
   $.mobile.orientationChangeEnabled = false
Page load events
 $(document).bind(“pagebeforeload”, function() {});
 pagebeforeload
 pageload
 pageloadfailed
Page change events
 $(document).bind(“pagebeforechange”, function() {});
 pagebeforechange
 pagechange
 pagechangefailed
Page transition events
 $(document).bind(“pagebeforeshow”, function() {});
 pagebeforeshow
 pagebeforehide
 pageshow
 pagehide
Page initialization events
 $(document).bind(“pagebeforecreate”, function() {});
 pagebeforecreate
 pagecreate
 pageinit
Page remove events
 $(document).bind(“pageremove”, function() {});
 pageremove
Methods
 $.mobile.changePage()
Methods
 $.mobile.loadPage()
Methods
 $.mobile.path.parseUrl(url)
Themes framework
 ThemeRoller
   http://jquerymobile.com/themeroller/

Más contenido relacionado

La actualidad más candente

Advanced JQuery Mobile tutorial with Phonegap
Advanced JQuery Mobile tutorial with Phonegap Advanced JQuery Mobile tutorial with Phonegap
Advanced JQuery Mobile tutorial with Phonegap Rakesh Jha
 
jQuery Mobile: Progressive Enhancement with HTML5
jQuery Mobile: Progressive Enhancement with HTML5jQuery Mobile: Progressive Enhancement with HTML5
jQuery Mobile: Progressive Enhancement with HTML5Todd Anderson
 
HTML5 and Mobile
HTML5 and MobileHTML5 and Mobile
HTML5 and Mobiledoodoofish
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web AppsOperation Mobile
 
Quick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileQuick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileJussi Pohjolainen
 
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkBuilding a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkSt. Petersburg College
 
JQuery Comprehensive Overview
JQuery Comprehensive OverviewJQuery Comprehensive Overview
JQuery Comprehensive OverviewMohamed Loey
 
Toutch Jquery Mobile
Toutch Jquery MobileToutch Jquery Mobile
Toutch Jquery MobileJinlong He
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web componentsJarrod Overson
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkBorisMoore
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQueryAnil Kumar
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQueryJames Johnson
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterpriseDave Artz
 
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum
 
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...ITCamp
 

La actualidad más candente (20)

What is jQuery?
What is jQuery?What is jQuery?
What is jQuery?
 
Advanced JQuery Mobile tutorial with Phonegap
Advanced JQuery Mobile tutorial with Phonegap Advanced JQuery Mobile tutorial with Phonegap
Advanced JQuery Mobile tutorial with Phonegap
 
jQuery Mobile: Progressive Enhancement with HTML5
jQuery Mobile: Progressive Enhancement with HTML5jQuery Mobile: Progressive Enhancement with HTML5
jQuery Mobile: Progressive Enhancement with HTML5
 
HTML5 and Mobile
HTML5 and MobileHTML5 and Mobile
HTML5 and Mobile
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web Apps
 
Quick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery MobileQuick Intro to JQuery and JQuery Mobile
Quick Intro to JQuery and JQuery Mobile
 
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile FrameworkBuilding a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
 
JQuery Comprehensive Overview
JQuery Comprehensive OverviewJQuery Comprehensive Overview
JQuery Comprehensive Overview
 
Toutch Jquery Mobile
Toutch Jquery MobileToutch Jquery Mobile
Toutch Jquery Mobile
 
Jquery Cheatsheet
Jquery CheatsheetJquery Cheatsheet
Jquery Cheatsheet
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
 
J query intro_29thsep_alok
J query intro_29thsep_alokJ query intro_29thsep_alok
J query intro_29thsep_alok
 
ActiveDOM
ActiveDOMActiveDOM
ActiveDOM
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data Link
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] Enterprise
 
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana Baotic
 
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...
Use Your WebDev Skills to Create Mobile Apps in Telerik Appbuilder (Jonathan ...
 

Similar a jQuery Mobile

Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Wahyu Putra
 
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...OPITZ CONSULTING Deutschland
 
A Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NETA Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NETJames Johnson
 
Web Apps and more
Web Apps and moreWeb Apps and more
Web Apps and moreYan Shi
 
Web app and more
Web app and moreWeb app and more
Web app and morefaming su
 
jQuery Mobile and JavaScript
jQuery Mobile and JavaScriptjQuery Mobile and JavaScript
jQuery Mobile and JavaScriptGary Yeh
 
Html5 and web technology update
Html5 and web technology updateHtml5 and web technology update
Html5 and web technology updateDoug Domeny
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllMarc Grabanski
 
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8netmind
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks TriviaCognizant
 
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 jQuerycolinbdclark
 
A Rich Web Experience with jQuery, Ajax and .NET
A Rich Web Experience with jQuery, Ajax and .NETA Rich Web Experience with jQuery, Ajax and .NET
A Rich Web Experience with jQuery, Ajax and .NETJames Johnson
 
Laurentiu Macovei - jQueryMobile
Laurentiu Macovei - jQueryMobileLaurentiu Macovei - jQueryMobile
Laurentiu Macovei - jQueryMobileCodecamp Romania
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
J Query The Write Less Do More Javascript Library
J Query   The Write Less Do More Javascript LibraryJ Query   The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Libraryrsnarayanan
 
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 CombinationSean Burgess
 
jQuery State of the Union - Yehuda Katz
jQuery State of the Union - Yehuda KatzjQuery State of the Union - Yehuda Katz
jQuery State of the Union - Yehuda KatzMarakana Inc.
 

Similar a jQuery Mobile (20)

Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...
Design Patterns for JavaScript Web Apps - JavaScript Conference 2012 - OPITZ ...
 
Jquery fundamentals
Jquery fundamentalsJquery fundamentals
Jquery fundamentals
 
A Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NETA Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NET
 
Web Apps and more
Web Apps and moreWeb Apps and more
Web Apps and more
 
Web app and more
Web app and moreWeb app and more
Web app and more
 
jQuery Mobile and JavaScript
jQuery Mobile and JavaScriptjQuery Mobile and JavaScript
jQuery Mobile and JavaScript
 
Html5 and web technology update
Html5 and web technology updateHtml5 and web technology update
Html5 and web technology update
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
 
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8
netmind - Primer Contacto con el Desarrollo de Aplicaciones para Windows 8
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
 
jQuery for web development
jQuery for web developmentjQuery for web development
jQuery for web development
 
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
 
A Rich Web Experience with jQuery, Ajax and .NET
A Rich Web Experience with jQuery, Ajax and .NETA Rich Web Experience with jQuery, Ajax and .NET
A Rich Web Experience with jQuery, Ajax and .NET
 
Laurentiu Macovei - jQueryMobile
Laurentiu Macovei - jQueryMobileLaurentiu Macovei - jQueryMobile
Laurentiu Macovei - jQueryMobile
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
J Query The Write Less Do More Javascript Library
J Query   The Write Less Do More Javascript LibraryJ Query   The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Library
 
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
 
jQuery State of the Union - Yehuda Katz
jQuery State of the Union - Yehuda KatzjQuery State of the Union - Yehuda Katz
jQuery State of the Union - Yehuda Katz
 

Último

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 

jQuery Mobile