SlideShare a Scribd company logo
Fundamental JQuery
TRAINING HARI #3 – ACHMAD SOLICHIN (@ACHMATIM)
Agenda
 Apa itu JQuery?
 jQuery Basics
 Animating, Scrolling, Resizing
 Image and Slideshow
 Forms
Apa itu JQuery?
Apa itu JQuery?
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like
HTML document traversal and manipulation, event handling, animation, and Ajax
much simpler with an easy-to-use API that works across a multitude of browsers.
With a combination of versatility and extensibility, jQuery has changed the way
that millions of people write JavaScript. (http://jquery.com)
JQuery Usage Statistics
Sumber: http://trends.builtwith.com/javascript/
Mengapa JQuery?
 Mengakses bagian halaman tertentu dengan mudah.
 Dapat mengubah tampilan bagian halaman tertentu saja.
 Mengubah isi dari halaman.
 Merespond interaksi user dalam halaman
 Menambahkan animasi ke halaman
 Mengambil informasi dari server tanpa me-refresh seluruh halaman
 Menyederhanakan penulisan Javascript biasa.
Kegunaan JQuery
 Mengakses bagian halaman tertentu dengan mudah.
 Dapat mengubah tampilan bagian halaman tertentu saja.
 Mengubah isi dari halaman.
 Merespond interaksi user dalam halaman
 Menambahkan animasi ke halaman
 Mengambil informasi dari server tanpa me-refresh seluruh halaman
 Menyederhanakan penulisan Javascript biasa.
JQuery Basics
Download dan Install
 Download
http://jquery.com
 Install (local)
<script src=“path/to/jquery.js”></script>
 Install (CDN) – Content Delivery Network
<script src=“http://code.jquery.com/jquery.js”></script>
<script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/
jquery.min.js”></script>
Struktur JQuery
Document Object Model (DOM)
JQuery Hello World!
$(document).ready(function() {
alert('Hello World!');
});
$(function() {
alert('Ready to do your bidding!');
});
Selector
 Tag
$(‘h2’)
 ID
$(‘#celebs’)
 Class
$(‘.data’)
Selector
Contoh
jQuery dan CSS
 Membaca Property CSS
 Mengubah Property CSS
jQuery dan CSS
 Menambah dan Menghapus Class CSS
jQuery Event Handler
 HTML
 Menyembunyikan suatu komponen pada saat tombol diklik
 Selector ‘this’ yang mengacu pada lingkup dirinya sendiri
jQuery Event Handler
 Toggle (Show/Hide)
jQuery Manipulasi Elemen
 Menambahkan elemen baru
 Menghapus elemen
Menambahkan setelah / sebelum
Menambahkan di dalam elemen
jQuery Manipulasi Elemen
 Mengganti Isi Elemen
 Apa perbedaan .html() dan .text() ?
jQuery mouseover() dan hover()
JQuery Animating, Scrolling, Resizing
jQuery animate()
 Animasi di semua paragraf saat halaman ditampilkan
 Animasi aktif saat hover()
 Color Animation
jQuery animate()
 Easing
jQuery animate() - Bouncing
jQuery animate() – Animated Navigation
jQuery Scrolling
 Fungsi scroll()
 Floating Navigation
jQuery Scrolling
 Page Scroll  scrollTop
 Manipulasi Scrollbar  plugin https://code.google.com/p/jscrollpane/
jQuery Resize
 Fungsi resize()
 Membuat komponen dapat diubah ukurannya (resizable)
 Resizable Textarea
JQuery Image & Slideshow
jQuery Lightbox
 ColorBox - http://www.jacklmoore.com/colorbox/
 LightBox - http://lokeshdhakar.com/projects/lightbox2/
 FancyBox - http://fancybox.net/
 Magnific Popup - http://dimsemenov.com/plugins/magnific-popup/
 Nivo Lightbox - http://dev7studios.com/plugins/nivo-lightbox/
 Featherlight - http://noelboss.github.io/featherlight/
jQuery ColorBox
jQuery Cropping Image
 Jcrop - http://deepliquid.com/content/Jcrop.html
 Image Cropper - https://github.com/fengyuanchen/cropper
 CropPic - http://www.croppic.net/
 Image Crop (paid) - http://codecanyon.net/item/image-crop/5348464
 CropZoom - http://www.cropzoom.com.ar/
jQuery Image Slider
 ResponsiveSlider - http://responsiveslides.com/
 WowSlider - http://wowslider.com/
 Jquery Cycle - http://jquery.malsup.com/cycle/
 BxSlider - http://bxslider.com/
 SlideJS - http://www.slidesjs.com/
 NivoSlider - http://dev7studios.com/plugins/nivo-slider
JQuery Menu, Tabs, Panels, Tooltips
jQuery Menu
 SmartMenu - http://www.smartmenus.org/
 SuperFish - http://users.tpg.com.au/j_birch/plugins/superfish/
 FlexNav - http://jasonweaver.name/lab/flexiblenavigation/
 contextMenu - https://github.com/s-yadav/contextMenu.js
 NOO Menu (paid) - http://codecanyon.net/item/noo-menu-wordpress-mega-menu-
plugin/7873697
 meanMenu - https://github.com/meanthemes/meanMenu
 Zetta Menu (paid) - http://codecanyon.net/item/zetta-menu-jquery-mega-menu/7941407
 And many more…
jQuery Accordion
 liteAccordion - http://nicolahibbert.com/demo/liteAccordion/
 Slidorion - http://slidorion.com/
 jQuery UI Accordion – http://jqueryui.com
 Flat Jquery Accordion - http://cssmenumaker.com/blog/flat-jquery-accordion-menu-tutorial
 Vertical Accordion Menu - http://thecodeplayer.com/walkthrough/vertical-accordion-menu-
using-jquery-css3
 jQuery Accordion (paid) - http://codecanyon.net/item/jquery-accordion/4826492
 And many more…
jQuery Tabs
jQuery Tabs
 jQuery UI Tabs – http://jqueryui.com
 EasyTabs - http://os.alfajango.com/easytabs
 TabulousJS - http://git.aaronlumsden.com/tabulous.js/
 Google Play’s Tabs - http://red-team-design.com/google-play-minimal-tabs-with-css3-jquery/
 Folder Tabs - http://red-team-design.com/css3-jquery-folder-tabs/
 And many more…
jQuery Slide-down Login Panel
jQuery Tooltips
jQuery Tooltips
 jQuery UI Tooltips – http://jqueryui.com
 Tooltipster - http://iamceege.github.io/tooltipster/
 qTip2 - http://qtip2.com/
 qTip - http://craigsworks.com/projects/qtip/
 Toltipsy - http://tooltipsy.com/
 And many more…
JQuery Forms
jQuery Form Validation
 http://achmatim.net/2012/05/22/membuat-validasi-form-dengan-jquery-validation/
jQuery Check All Checkboxes
jQuery Autocomplete
jQuery Autocomplete
 jQuery UI Autocomplete - http://jqueryui.com/autocomplete/
 Autocomplete - http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
 Ajax Autocomplete - http://www.devbridge.com/sourcery/components/jquery-
autocomplete/
 Facebook Like Autocomplete - http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-
and-autosuggest-search-engine/
 And many more…
jQuery Datepicker
 jQuery UI Datepicker – http://jqueryui.com/datepicker
 DatePicker - http://www.eyecon.ro/datepicker/
 Bootstrap Datepicker - http://www.eyecon.ro/bootstrap-datepicker/
 glDatePicker - http://glad.github.com/glDatePicker/
 Zebra DatePicker - http://stefangabos.ro/jquery/zebra-datepicker/
 ptTimeSelect - http://pttimeselect.sourceforge.net/example/index.html
 And many more…
jQuery Slider
 jQuery UI Slider – http://jqueryui.com/slider
Resources
 (Book) Jquery Novice to Ninja. Sitepoint
 http://jquery.com
 http://jqueryui.com
 http://achmatim.net
Terima Kasih
 http://achmatim.net
 achmatim@gmail.com
 http://twitter.com/achmatim
 http://facebook.com/achmatim
 http://slideshare.net/achmatim

More Related Content

What's hot (20)

PPTX
Introduction to the jQuery mobile framework
Rishabh Rao
 
PDF
Real World Web components
Jarrod Overson
 
PDF
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
PPTX
Harness jQuery Templates and Data Link
BorisMoore
 
PPTX
WebMatrix 100-level presentation
Alice Pang
 
PDF
Responsive Websites
Joe Seifi
 
PPTX
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
Estelle Weyl
 
PDF
jQueryMobile Jump Start
Haim Michael
 
PDF
There Are No “Buts” in Progressive Enhancement [Øredev 2015]
Aaron Gustafson
 
PDF
Responsive Web Design: Clever Tips and Techniques
Vitaly Friedman
 
PPTX
Building jQuery Mobile Web Apps
Operation Mobile
 
PDF
CSS in React
Joe Seifi
 
PPSX
Responsive Web Design: Tips and Tricks
Gautam Krishnan
 
PDF
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Scott DeLoach
 
PDF
jQuery in the [Aol.] Enterprise
Dave Artz
 
PDF
Desenvolvimento web com Ruby on Rails (parte 6)
Joao Lucas Santana
 
PDF
Bootstrap Workout 2015
Rob Davarnia
 
PPTX
jQuery Mobile
mowd8574
 
PDF
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Scott DeLoach
 
PPTX
Joomla! Day Los Angeles 2011 WebMatrix
Alice Pang
 
Introduction to the jQuery mobile framework
Rishabh Rao
 
Real World Web components
Jarrod Overson
 
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
Harness jQuery Templates and Data Link
BorisMoore
 
WebMatrix 100-level presentation
Alice Pang
 
Responsive Websites
Joe Seifi
 
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
Estelle Weyl
 
jQueryMobile Jump Start
Haim Michael
 
There Are No “Buts” in Progressive Enhancement [Øredev 2015]
Aaron Gustafson
 
Responsive Web Design: Clever Tips and Techniques
Vitaly Friedman
 
Building jQuery Mobile Web Apps
Operation Mobile
 
CSS in React
Joe Seifi
 
Responsive Web Design: Tips and Tricks
Gautam Krishnan
 
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Scott DeLoach
 
jQuery in the [Aol.] Enterprise
Dave Artz
 
Desenvolvimento web com Ruby on Rails (parte 6)
Joao Lucas Santana
 
Bootstrap Workout 2015
Rob Davarnia
 
jQuery Mobile
mowd8574
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Scott DeLoach
 
Joomla! Day Los Angeles 2011 WebMatrix
Alice Pang
 

Similar to Fundamental JQuery (20)

PDF
jQuery (MeshU)
jeresig
 
PDF
Write Less Do More
Remy Sharp
 
PDF
Introduction to jQuery (Ajax Exp 2006)
jeresig
 
PDF
jQuery (BostonPHP)
jeresig
 
PDF
jQuery (DrupalCamp Toronto)
jeresig
 
ODP
Jquery- One slide completing all JQuery
Knoldus Inc.
 
PDF
An Introduction to Jquery
Phil Reither
 
PDF
Introduction to jQuery (Ajax Exp 2007)
jeresig
 
PPTX
Jquery
PaRa Vaishnav
 
PDF
Devdays Seattle jQuery Intro for Developers
cody lindley
 
PPTX
Getting Started with jQuery
Laila Buncab
 
PDF
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
PPT
Jquery presentation
Narendra Dabhi
 
PDF
Yearning jQuery
Remy Sharp
 
KEY
Introduction to jQuery - Barcamp London 9
Jack Franklin
 
PPTX
webstudy jquery
Seungho Han
 
PPTX
jQuery
briannareedesign
 
PDF
Short intro to JQuery and Modernizr
Jussi Pohjolainen
 
PDF
Bubbles and Trees with jQuery
westhoff
 
jQuery (MeshU)
jeresig
 
Write Less Do More
Remy Sharp
 
Introduction to jQuery (Ajax Exp 2006)
jeresig
 
jQuery (BostonPHP)
jeresig
 
jQuery (DrupalCamp Toronto)
jeresig
 
Jquery- One slide completing all JQuery
Knoldus Inc.
 
An Introduction to Jquery
Phil Reither
 
Introduction to jQuery (Ajax Exp 2007)
jeresig
 
Devdays Seattle jQuery Intro for Developers
cody lindley
 
Getting Started with jQuery
Laila Buncab
 
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
Jquery presentation
Narendra Dabhi
 
Yearning jQuery
Remy Sharp
 
Introduction to jQuery - Barcamp London 9
Jack Franklin
 
webstudy jquery
Seungho Han
 
Short intro to JQuery and Modernizr
Jussi Pohjolainen
 
Bubbles and Trees with jQuery
westhoff
 
Ad

More from Achmad Solichin (20)

PDF
Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)
Achmad Solichin
 
PDF
Materi Webinar Web 3.0 (16 Juli 2022)
Achmad Solichin
 
PDF
Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)
Achmad Solichin
 
PPTX
Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)
Achmad Solichin
 
PDF
Webinar PHP-ID: Machine Learning dengan PHP
Achmad Solichin
 
PPTX
Webinar Data Mining dengan Rapidminer | Universitas Budi Luhur
Achmad Solichin
 
PPTX
TREN DAN IDE RISET BIDANG DATA MINING TERBARU
Achmad Solichin
 
PPTX
Metodologi Riset: Literature Review
Achmad Solichin
 
PPTX
Materi Seminar: Artificial Intelligence dengan PHP
Achmad Solichin
 
PPTX
Percobaan Perpindahan Kalor melalui Konduksi, Konveksi dan Radiasi
Achmad Solichin
 
PDF
Metodologi Riset: Literature Review
Achmad Solichin
 
PPTX
Depth First Search (DFS) pada Graph
Achmad Solichin
 
PPTX
Breadth First Search (BFS) pada Graph
Achmad Solichin
 
PPTX
Binary Search Tree (BST) - Algoritma dan Struktur Data
Achmad Solichin
 
PPTX
Computer Vision di Era Industri 4.0
Achmad Solichin
 
PDF
Seminar: Become a Reliable Web Programmer
Achmad Solichin
 
PPTX
The Big 5: Future IT Trends
Achmad Solichin
 
PDF
Modern PHP Developer
Achmad Solichin
 
PPTX
Seminar: PHP Developer for Dummies
Achmad Solichin
 
PPT
Pertemuan 1 - Algoritma dan Struktur Data 1
Achmad Solichin
 
Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)
Achmad Solichin
 
Materi Webinar Web 3.0 (16 Juli 2022)
Achmad Solichin
 
Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)
Achmad Solichin
 
Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)
Achmad Solichin
 
Webinar PHP-ID: Machine Learning dengan PHP
Achmad Solichin
 
Webinar Data Mining dengan Rapidminer | Universitas Budi Luhur
Achmad Solichin
 
TREN DAN IDE RISET BIDANG DATA MINING TERBARU
Achmad Solichin
 
Metodologi Riset: Literature Review
Achmad Solichin
 
Materi Seminar: Artificial Intelligence dengan PHP
Achmad Solichin
 
Percobaan Perpindahan Kalor melalui Konduksi, Konveksi dan Radiasi
Achmad Solichin
 
Metodologi Riset: Literature Review
Achmad Solichin
 
Depth First Search (DFS) pada Graph
Achmad Solichin
 
Breadth First Search (BFS) pada Graph
Achmad Solichin
 
Binary Search Tree (BST) - Algoritma dan Struktur Data
Achmad Solichin
 
Computer Vision di Era Industri 4.0
Achmad Solichin
 
Seminar: Become a Reliable Web Programmer
Achmad Solichin
 
The Big 5: Future IT Trends
Achmad Solichin
 
Modern PHP Developer
Achmad Solichin
 
Seminar: PHP Developer for Dummies
Achmad Solichin
 
Pertemuan 1 - Algoritma dan Struktur Data 1
Achmad Solichin
 
Ad

Recently uploaded (20)

PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Biography of Daniel Podor.pdf
Daniel Podor
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
July Patch Tuesday
Ivanti
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 

Fundamental JQuery

  • 1. Fundamental JQuery TRAINING HARI #3 – ACHMAD SOLICHIN (@ACHMATIM)
  • 2. Agenda  Apa itu JQuery?  jQuery Basics  Animating, Scrolling, Resizing  Image and Slideshow  Forms
  • 4. Apa itu JQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. (http://jquery.com)
  • 5. JQuery Usage Statistics Sumber: http://trends.builtwith.com/javascript/
  • 6. Mengapa JQuery?  Mengakses bagian halaman tertentu dengan mudah.  Dapat mengubah tampilan bagian halaman tertentu saja.  Mengubah isi dari halaman.  Merespond interaksi user dalam halaman  Menambahkan animasi ke halaman  Mengambil informasi dari server tanpa me-refresh seluruh halaman  Menyederhanakan penulisan Javascript biasa.
  • 7. Kegunaan JQuery  Mengakses bagian halaman tertentu dengan mudah.  Dapat mengubah tampilan bagian halaman tertentu saja.  Mengubah isi dari halaman.  Merespond interaksi user dalam halaman  Menambahkan animasi ke halaman  Mengambil informasi dari server tanpa me-refresh seluruh halaman  Menyederhanakan penulisan Javascript biasa.
  • 9. Download dan Install  Download http://jquery.com  Install (local) <script src=“path/to/jquery.js”></script>  Install (CDN) – Content Delivery Network <script src=“http://code.jquery.com/jquery.js”></script> <script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/ jquery.min.js”></script>
  • 12. JQuery Hello World! $(document).ready(function() { alert('Hello World!'); }); $(function() { alert('Ready to do your bidding!'); });
  • 16. jQuery dan CSS  Membaca Property CSS  Mengubah Property CSS
  • 17. jQuery dan CSS  Menambah dan Menghapus Class CSS
  • 18. jQuery Event Handler  HTML  Menyembunyikan suatu komponen pada saat tombol diklik  Selector ‘this’ yang mengacu pada lingkup dirinya sendiri
  • 19. jQuery Event Handler  Toggle (Show/Hide)
  • 20. jQuery Manipulasi Elemen  Menambahkan elemen baru  Menghapus elemen Menambahkan setelah / sebelum Menambahkan di dalam elemen
  • 21. jQuery Manipulasi Elemen  Mengganti Isi Elemen  Apa perbedaan .html() dan .text() ?
  • 24. jQuery animate()  Animasi di semua paragraf saat halaman ditampilkan  Animasi aktif saat hover()  Color Animation
  • 26. jQuery animate() - Bouncing
  • 27. jQuery animate() – Animated Navigation
  • 28. jQuery Scrolling  Fungsi scroll()  Floating Navigation
  • 29. jQuery Scrolling  Page Scroll  scrollTop  Manipulasi Scrollbar  plugin https://code.google.com/p/jscrollpane/
  • 30. jQuery Resize  Fungsi resize()  Membuat komponen dapat diubah ukurannya (resizable)  Resizable Textarea
  • 31. JQuery Image & Slideshow
  • 32. jQuery Lightbox  ColorBox - http://www.jacklmoore.com/colorbox/  LightBox - http://lokeshdhakar.com/projects/lightbox2/  FancyBox - http://fancybox.net/  Magnific Popup - http://dimsemenov.com/plugins/magnific-popup/  Nivo Lightbox - http://dev7studios.com/plugins/nivo-lightbox/  Featherlight - http://noelboss.github.io/featherlight/
  • 34. jQuery Cropping Image  Jcrop - http://deepliquid.com/content/Jcrop.html  Image Cropper - https://github.com/fengyuanchen/cropper  CropPic - http://www.croppic.net/  Image Crop (paid) - http://codecanyon.net/item/image-crop/5348464  CropZoom - http://www.cropzoom.com.ar/
  • 35. jQuery Image Slider  ResponsiveSlider - http://responsiveslides.com/  WowSlider - http://wowslider.com/  Jquery Cycle - http://jquery.malsup.com/cycle/  BxSlider - http://bxslider.com/  SlideJS - http://www.slidesjs.com/  NivoSlider - http://dev7studios.com/plugins/nivo-slider
  • 36. JQuery Menu, Tabs, Panels, Tooltips
  • 37. jQuery Menu  SmartMenu - http://www.smartmenus.org/  SuperFish - http://users.tpg.com.au/j_birch/plugins/superfish/  FlexNav - http://jasonweaver.name/lab/flexiblenavigation/  contextMenu - https://github.com/s-yadav/contextMenu.js  NOO Menu (paid) - http://codecanyon.net/item/noo-menu-wordpress-mega-menu- plugin/7873697  meanMenu - https://github.com/meanthemes/meanMenu  Zetta Menu (paid) - http://codecanyon.net/item/zetta-menu-jquery-mega-menu/7941407  And many more…
  • 38. jQuery Accordion  liteAccordion - http://nicolahibbert.com/demo/liteAccordion/  Slidorion - http://slidorion.com/  jQuery UI Accordion – http://jqueryui.com  Flat Jquery Accordion - http://cssmenumaker.com/blog/flat-jquery-accordion-menu-tutorial  Vertical Accordion Menu - http://thecodeplayer.com/walkthrough/vertical-accordion-menu- using-jquery-css3  jQuery Accordion (paid) - http://codecanyon.net/item/jquery-accordion/4826492  And many more…
  • 40. jQuery Tabs  jQuery UI Tabs – http://jqueryui.com  EasyTabs - http://os.alfajango.com/easytabs  TabulousJS - http://git.aaronlumsden.com/tabulous.js/  Google Play’s Tabs - http://red-team-design.com/google-play-minimal-tabs-with-css3-jquery/  Folder Tabs - http://red-team-design.com/css3-jquery-folder-tabs/  And many more…
  • 43. jQuery Tooltips  jQuery UI Tooltips – http://jqueryui.com  Tooltipster - http://iamceege.github.io/tooltipster/  qTip2 - http://qtip2.com/  qTip - http://craigsworks.com/projects/qtip/  Toltipsy - http://tooltipsy.com/  And many more…
  • 45. jQuery Form Validation  http://achmatim.net/2012/05/22/membuat-validasi-form-dengan-jquery-validation/
  • 46. jQuery Check All Checkboxes
  • 48. jQuery Autocomplete  jQuery UI Autocomplete - http://jqueryui.com/autocomplete/  Autocomplete - http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/  Ajax Autocomplete - http://www.devbridge.com/sourcery/components/jquery- autocomplete/  Facebook Like Autocomplete - http://www.web2ajax.fr/2008/02/03/facebook-like-jquery- and-autosuggest-search-engine/  And many more…
  • 49. jQuery Datepicker  jQuery UI Datepicker – http://jqueryui.com/datepicker  DatePicker - http://www.eyecon.ro/datepicker/  Bootstrap Datepicker - http://www.eyecon.ro/bootstrap-datepicker/  glDatePicker - http://glad.github.com/glDatePicker/  Zebra DatePicker - http://stefangabos.ro/jquery/zebra-datepicker/  ptTimeSelect - http://pttimeselect.sourceforge.net/example/index.html  And many more…
  • 50. jQuery Slider  jQuery UI Slider – http://jqueryui.com/slider
  • 51. Resources  (Book) Jquery Novice to Ninja. Sitepoint  http://jquery.com  http://jqueryui.com  http://achmatim.net
  • 52. Terima Kasih  http://achmatim.net  [email protected]  http://twitter.com/achmatim  http://facebook.com/achmatim  http://slideshare.net/achmatim