SlideShare ist ein Scribd-Unternehmen logo
1 von 52
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkRishabh Rao
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web componentsJarrod Overson
 
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
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkBorisMoore
 
WebMatrix 100-level presentation
WebMatrix 100-level presentationWebMatrix 100-level presentation
WebMatrix 100-level presentationAlice Pang
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive WebsitesJoe Seifi
 
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone developmentiPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone developmentEstelle Weyl
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump StartHaim Michael
 
There Are No “Buts” in Progressive Enhancement [Øredev 2015]
There Are No “Buts” in Progressive Enhancement [Øredev 2015]There Are No “Buts” in Progressive Enhancement [Øredev 2015]
There Are No “Buts” in Progressive Enhancement [Øredev 2015]Aaron Gustafson
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesVitaly Friedman
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web AppsOperation Mobile
 
CSS in React
CSS in ReactCSS in React
CSS in ReactJoe Seifi
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksGautam Krishnan
 
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...Scott DeLoach
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterpriseDave Artz
 
Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Joao Lucas Santana
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015Rob Davarnia
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobilemowd8574
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartBest Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartScott DeLoach
 
Joomla! Day Los Angeles 2011 WebMatrix
Joomla! Day Los Angeles 2011 WebMatrixJoomla! Day Los Angeles 2011 WebMatrix
Joomla! Day Los Angeles 2011 WebMatrixAlice Pang
 

Was ist angesagt? (20)

Introduction to the jQuery mobile framework
Introduction to the jQuery mobile frameworkIntroduction to the jQuery mobile framework
Introduction to the jQuery mobile framework
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
 
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
 
Harness jQuery Templates and Data Link
Harness jQuery Templates and Data LinkHarness jQuery Templates and Data Link
Harness jQuery Templates and Data Link
 
WebMatrix 100-level presentation
WebMatrix 100-level presentationWebMatrix 100-level presentation
WebMatrix 100-level presentation
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone developmentiPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump Start
 
There Are No “Buts” in Progressive Enhancement [Øredev 2015]
There Are No “Buts” in Progressive Enhancement [Øredev 2015]There Are No “Buts” in Progressive Enhancement [Øredev 2015]
There Are No “Buts” in Progressive Enhancement [Øredev 2015]
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
Building jQuery Mobile Web Apps
Building jQuery Mobile Web AppsBuilding jQuery Mobile Web Apps
Building jQuery Mobile Web Apps
 
CSS in React
CSS in ReactCSS in React
CSS in React
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and Tricks
 
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
Developing Context-sensitive Help for Web-based Applications - Scott DeLoach,...
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] Enterprise
 
Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)Desenvolvimento web com Ruby on Rails (parte 6)
Desenvolvimento web com Ruby on Rails (parte 6)
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartBest Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
 
Joomla! Day Los Angeles 2011 WebMatrix
Joomla! Day Los Angeles 2011 WebMatrixJoomla! Day Los Angeles 2011 WebMatrix
Joomla! Day Los Angeles 2011 WebMatrix
 

Ähnlich wie Fundamental JQuery

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 SiddiquiMuhammad Ehtisham Siddiqui
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery BasicsKaloyan Kosev
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesMark Roden
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQueryAnil Kumar
 
Jquery
Jquery Jquery
Jquery eginni
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to JqueryAmzad Hossain
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks TriviaCognizant
 
A to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java DeveloperA to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java DeveloperManoj Bhuva
 
Introduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointIntroduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointRene Modery
 
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
 
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSAngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSmurtazahaveliwala
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile IntroGonzalo Parra
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and ModernizrJussi Pohjolainen
 

Ähnlich wie Fundamental 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
 
JavaScript and jQuery Basics
JavaScript and jQuery BasicsJavaScript and jQuery Basics
JavaScript and jQuery Basics
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPages
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
 
Jquery
Jquery Jquery
Jquery
 
jQuery for web development
jQuery for web developmentjQuery for web development
jQuery for web development
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
jQuery Tips Tricks Trivia
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
 
Jquery
JqueryJquery
Jquery
 
A to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java DeveloperA to Z about JQuery - Become Newbie to Expert Java Developer
A to Z about JQuery - Become Newbie to Expert Java Developer
 
jQuery Ecosystem
jQuery EcosystemjQuery Ecosystem
jQuery Ecosystem
 
Introduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointIntroduction to using jQuery with SharePoint
Introduction to using jQuery with SharePoint
 
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
 
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSAngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
 
Mume JQueryMobile Intro
Mume JQueryMobile IntroMume JQueryMobile Intro
Mume JQueryMobile Intro
 
Short intro to JQuery and Modernizr
Short intro to JQuery and ModernizrShort intro to JQuery and Modernizr
Short intro to JQuery and Modernizr
 

Mehr von Achmad Solichin

Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)
Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)
Kuliah Umum - Tips Publikasi Jurnal SINTA untuk Mahasiswa Galau (6 Agustus 2022)Achmad Solichin
 
Materi Webinar Web 3.0 (16 Juli 2022)
Materi Webinar Web 3.0 (16 Juli 2022)Materi Webinar Web 3.0 (16 Juli 2022)
Materi Webinar Web 3.0 (16 Juli 2022)Achmad Solichin
 
Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)
Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)
Webinar: Kesadaran Keamanan Informasi (3 Desember 2021)Achmad Solichin
 
Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)
Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)
Webinar PHP-ID: Mari Mengenal Logika Fuzzy (Fuzzy Logic)Achmad Solichin
 
Webinar PHP-ID: Machine Learning dengan PHP
Webinar PHP-ID: Machine Learning dengan PHPWebinar PHP-ID: Machine Learning dengan PHP
Webinar PHP-ID: Machine Learning dengan PHPAchmad Solichin
 
Webinar Data Mining dengan Rapidminer | Universitas Budi Luhur
Webinar Data Mining dengan Rapidminer | Universitas Budi LuhurWebinar Data Mining dengan Rapidminer | Universitas Budi Luhur
Webinar Data Mining dengan Rapidminer | Universitas Budi LuhurAchmad Solichin
 
TREN DAN IDE RISET BIDANG DATA MINING TERBARU
TREN DAN IDE RISET BIDANG DATA MINING TERBARUTREN DAN IDE RISET BIDANG DATA MINING TERBARU
TREN DAN IDE RISET BIDANG DATA MINING TERBARUAchmad Solichin
 
Metodologi Riset: Literature Review
Metodologi Riset: Literature ReviewMetodologi Riset: Literature Review
Metodologi Riset: Literature ReviewAchmad Solichin
 
Materi Seminar: Artificial Intelligence dengan PHP
Materi Seminar: Artificial Intelligence dengan PHPMateri Seminar: Artificial Intelligence dengan PHP
Materi Seminar: Artificial Intelligence dengan PHPAchmad Solichin
 
Percobaan Perpindahan Kalor melalui Konduksi, Konveksi dan Radiasi
Percobaan Perpindahan Kalor melalui Konduksi, Konveksi dan RadiasiPercobaan Perpindahan Kalor melalui Konduksi, Konveksi dan Radiasi
Percobaan Perpindahan Kalor melalui Konduksi, Konveksi dan RadiasiAchmad Solichin
 
Metodologi Riset: Literature Review
Metodologi Riset: Literature ReviewMetodologi Riset: Literature Review
Metodologi Riset: Literature ReviewAchmad Solichin
 
Depth First Search (DFS) pada Graph
Depth First Search (DFS) pada GraphDepth First Search (DFS) pada Graph
Depth First Search (DFS) pada GraphAchmad Solichin
 
Breadth First Search (BFS) pada Graph
Breadth First Search (BFS) pada GraphBreadth First Search (BFS) pada Graph
Breadth First Search (BFS) pada GraphAchmad Solichin
 
Binary Search Tree (BST) - Algoritma dan Struktur Data
Binary Search Tree (BST) - Algoritma dan Struktur DataBinary Search Tree (BST) - Algoritma dan Struktur Data
Binary Search Tree (BST) - Algoritma dan Struktur DataAchmad Solichin
 
Computer Vision di Era Industri 4.0
Computer Vision di Era Industri 4.0Computer Vision di Era Industri 4.0
Computer Vision di Era Industri 4.0Achmad Solichin
 
Seminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web ProgrammerSeminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web ProgrammerAchmad Solichin
 
The Big 5: Future IT Trends
The Big 5: Future IT TrendsThe Big 5: Future IT Trends
The Big 5: Future IT TrendsAchmad Solichin
 
Seminar: PHP Developer for Dummies
Seminar: PHP Developer for DummiesSeminar: PHP Developer for Dummies
Seminar: PHP Developer for DummiesAchmad Solichin
 
Pertemuan 1 - Algoritma dan Struktur Data 1
Pertemuan 1 - Algoritma dan Struktur Data 1Pertemuan 1 - Algoritma dan Struktur Data 1
Pertemuan 1 - Algoritma dan Struktur Data 1Achmad Solichin
 

Mehr von Achmad Solichin (20)

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

Kürzlich hochgeladen

Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Kuma Meshes Part I - The basics - A tutorial
Kuma Meshes Part I - The basics - A tutorialKuma Meshes Part I - The basics - A tutorial
Kuma Meshes Part I - The basics - A tutorialJoão Esperancinha
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentMahmoud Rabie
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...Karmanjay Verma
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Karmanjay Verma
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Mark Simos
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFMichael Gough
 

Kürzlich hochgeladen (20)

Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Kuma Meshes Part I - The basics - A tutorial
Kuma Meshes Part I - The basics - A tutorialKuma Meshes Part I - The basics - A tutorial
Kuma Meshes Part I - The basics - A tutorial
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career Development
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDF
 

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  achmatim@gmail.com  http://twitter.com/achmatim  http://facebook.com/achmatim  http://slideshare.net/achmatim