By ishaq shinwari.  jQuery is a lightweight, "write less, do more", JavaScript library.  The purpose of jQuery is to make it much easier to use JavaScript.

Slides:



Advertisements
Similar presentations
The jQuery library. What is jQuery ? A javascript lightweight library Is very easy to use Is powerful Is cross-browser compatible Downloadable from jQuery.com,
Advertisements

SE-2840 Dr. Mark L. Hornick1 jQuery. jQuery is a library of JavaScript functions Helps minimize the amount of JavaScript you have to write in order to:
JQuery A Javascript Library Hard things made eas(ier) Norman White.
CS7026 jQuery Events. What are Events?  jQuery is tailor-made to respond to events in an HTML page.  Events are actions that can be detected by your.
Sep 2010 Palestinian Land Authority IT Department By Salam Turkman1 Jquery (write less do more)
JQuery Plugins Samuel Zweig CMPS 183. A bit about JQuery Lightweight JavaScript library Used by over 27% of the top 10,000 most visited websites [1] Open.
CS428 Web Engineering Lecture 15 Introduction to Jquery.
Philly.NET Hands-On jQuery + Plug-ins Bill Wolff, Rob Keiser.
M. Taimoor Khan Courtesy: Norman White.
KRAD makes it easy to handle HTML events in your webpage. Kuali University: Apply Now Lab 6: Fun with HTML Events Lab Objectives HTML Events – what are.
JQuery March 09 th,2009 Create by
A really fairly simple guide to: mobile browser-based application development (part 4, JQuery & DOM) Chris Greenhalgh G54UBI / Chris Greenhalgh.
Event Handlers CS101 Introduction to Computing. Learning Goals Learn about event handlers Determine how events are useful in JavaScript Discover where.
Chapter 19: Adding JavaScript
WEBiT Adding a new page. 1. View a page like the one you wish to create a. Navigate to a page with a similar layout to the new page you wish to create.
Jquery Nasrullah. Jquery jQuery is a JavaScript Library. jQuery greatly simplifies JavaScript programming. jQuery is easy to learn.
INTRODUCTION TO HTML5 Using jQuery with HTML5. Introducing jQuery  Although it is not a part of any W3C or WHATWG specification, jQuery performs an important.
Animation & Effects Using JQuery. What is jQuery? jQuery is a lightweight, JavaScript library. The purpose of jQuery is to make it much easier to use.
JQuery Youn-Hee Han
CHAPTER 5 jQuery อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
Department Name (View Master > Edit Slide 1) JQuery I took these slides from the site because they were pretty good looking.
JQuery Introduction © Copyright 2014, Fred McClurg All Rights Reserved.
LOGO sparcs.org 1 jQuery Tutorial Presenter ㅎㅇㅎㅇ.
Browser scripting jQuery Edited by: Trần Thị Mỹ Dung Ref:w3schools.com.
JavaScript Library. What is jQuery jQuery is a lightweight JavaScript library. The purpose is to make it easier to use JavaScript code on your website.
Web Programming Language Week 9 Dr. Ken Cosh Introducing jQuery.
Online Surveys Jacqui James Malcolm Roberts School of Education.
Intro to jQuery. What is jQuery? A JavaScript library Lightweight (about 31KB for the minified version) Simplifies HTML document traversing (DOM), event.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
Introduction 1.HTML DOM events allow JavaScript to register different event handlers on elements in an HTML document. 2.Events are normally used in combination.
Introduction to JQuery COGS 187A – Fall JQuery jQuery is a JavaScript library, and allows us to manipulate HTML and CSS after the page has been.
JQuery “write less, do more”. jQuery - Introduction Simply a JavaScript library to simplify JavaScript programming itself Wraps long standard JavaScript.
KAPITA SELEKTA INFORMATIKA Lasmedi Afuan, ST.M.Cs.
By Ishaq Shinwari.   jquery   $(document).ready(function(){  $("p").hide();  $("h1").click(function(){  $(this).next().slideToggle(300);  });
JQuery Tutorial. What is jQuery jQuery is a JavaScript Library The purpose of jQuery is to make it much easier to use JavaScript on your website JavaScript.
1 Using jQuery JavaScript & jQuery the missing manual (Second Edition)
Creating a website. What you should learn HTML HyperText Markup Language Basic structure of your web.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
Murach's ASP.NET 4.5/C#, C2© 2013, Mike Murach & Associates, Inc.Slide 1.
SharePoint & jQuery. About me Phill Duffy – Product Manager at Lightning Tools Ltd – Author of ‘Pro SharePoint with jQuery’ – MCTS Application Developer.
JQuery.
JQuery Fundamentals Introduction Tutorial Videos
What is jQuery?.
-By Yogita Nirmal.
12/04/12 JQuery I took these slides from the site because they were pretty good looking. Instructions for editing school and department titles: Select.
Tek Raj Chhetri Code for Humans not for machine.
Intro to jQuery jQuery is a popular, and extensible, JavaScript library Supports … DOM manipulation CSS manipulation HTML event methods Effects & animations.
Intro to JavaScript CS 1150 Spring 2017.
COP3530- Data Structures JSFiddle
Introduction to Web programming
JQUERY Online TRAINING AT GOLOGICA
The Cliff Notes Version
JavaScript and Events.
JQuery with ASP.NET.
Introduction to jQuery
Web Programming Language
JavaScript and the DOM MIS 2402 Jeremy Shafer Department of MIS
Javascript.
E-commerce Applications Development
CS7026 jQuery Events.
Murach's JavaScript and jQuery (3rd Ed.)
SEEM4540 Tutorial 3 jQuery Wong Wai Chung.
Murach's JavaScript and jQuery (3rd Ed.)
© 2017, Mike Murach & Associates, Inc.
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
JQuery.
JavaScript and the DOM MIS 2402 Maxwell Furman Department of MIS
Presentation transcript:

By ishaq shinwari

 jQuery is a lightweight, "write less, do more", JavaScript library.  The purpose of jQuery is to make it much easier to use JavaScript on your website.

 Many of the biggest companies on the Web use jQuery, such as:  Google  Microsoft  IBM  Netflix

 jQuery is a JavaScript Library.  jQuery greatly simplifies JavaScript programming.  jQuery is easy to learn.

 Before you start studying jQuery, you should have a basic knowledge of:  HTML  CSS  JavaScript

  $(document).ready(function()  {  $("p").click(function(){  $(this).hide();  });   If you click on me, I will disappear.  Click me away!  Click me too!  this is just checking p 

 $(document).ready(function()  {  $("p").click(function(){  $(this).hide();  });  });  $(this).hide() - hides the current element.  $("p").hide() - hides all elements.

  $(document).ready(function(){  $("p").dblclick(function(){  $(this).hide();  });   If you double-click on me, I will disappear.  Click me away!  Click me too! 

 $(document).ready(function(){  $("p").dblclick(function(){  $(this).hide();  });

  $(document).ready(function(){  $("#p1").mouseenter(function(){  alert("You entered p1!");  });   Enter this paragraph. 

 $(document).ready(function(){  $("#p1").mouseenter(function(){  alert("You entered p1!");  });

  $(document).ready(function(){  $("#p1").mouseleave(function(){  alert("Bye! You now leave p1!");  });   This is a paragraph. 

 $(document).ready(function(){  $("#p1").mouseleave(function(){  alert("Bye! You now leave p1!");  });

  $(document).ready(function(){  $("#p1").mousedown(function(){  alert("Mouse down over p1!");  });   This is a paragraph. 

 $(document).ready(function(){  $("#p1").mousedown(function(){  alert("Mouse down over p1!");  });

  $(document).ready(function(){  $("#p1").hover(function(){  alert("You entered p1!");  },  function(){  alert("Bye! You now leave p1!");  });   This is a paragraph. 

 $(document).ready(function(){  $("#p1").hover(function(){  alert("You entered p1!");  },  function(){  alert("Bye! You now leave p1!");  });

  $(document).ready(function(){  $("#hide").click(function(){  $("p").hide();  });  $("#show").click(function(){  $("p").show();  });   If you click on the "Hide" button, I will disappear.  Hide  Show 

 $(document).ready(function(){  $("#hide").click(function(){  $("p").hide();  });  $("#show").click(function(){  $("p").show();  });

  $(document).ready(function(){  $("button").click(function(){  $("p").toggle();  });   Toggle  This is a paragraph with little content.  This is another small paragraph. 

 $(document).ready(function(){  $("button").click(function(){  $("p").toggle();  });

The End