SlideShare a Scribd company logo
1 of 52
Download to read offline
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

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
 

What's hot (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
 

Similar to 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
 

Similar to 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
 

More from 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
 

More from 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
 

Recently uploaded

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
[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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
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
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
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
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 

Recently uploaded (20)

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
[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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
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
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
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
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 

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