Top Banner
20
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: J query
Page 2: J query

Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra –Mentoring PartnerBaabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt . Ltd

Page 3: J query

jQuery Validation

Atheendrh [email protected]/atheendrh

kakkothtwitter.com/usernamein.linkedin.com/in/atheendrh

kakkoth9633734876

Page 4: J query

Week Target Achieved

1 30 28

2

3

Typing Speed

Page 5: J query

What is jQuery?

• JavaScript Library• 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• The jQuery library contains the following features: HTML/DOM manipulation CSS manipulation HTML event methods Effects and animations AJAX

Page 6: J query

Why jQuery?

• Cross-browser support (IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+)

• CSS-like syntax – easy for developers/non-developers to understand

• Active developer community

Page 7: J query

JQuery

• Powerful JavaScript library– Simplify common JavaScript tasks– Access parts of a page

• using CSS or XPath-like expressions– Modify the appearance of a page– Alter the content of a page– Change the user’s interaction with a page– Add animation to a page– Provide AJAX support– Abstract away browser quirks

Page 8: J query

A Few Examples

• Forms• Chatboxes• Menus• Dropdowns• Sliders• Tabs• Slideshows• Games

Page 9: J query

Using jQuery• Adding jQuery to Your Web Pages There are several ways to start using jQuery on your

web site. You can: Download the jQuery library from jQuery.com Include jQuery from the file

<head><script src="jquery-1.10.2.min.js"></script></head>

Page 10: J query

The Document Ready Event• You might have noticed that all jQuery methods in our examples, are inside a document

ready event:

• This is to prevent any jQuery code from running before the document is finished loading (is ready).

• This also allows you to have your JavaScript code before the body of your document, in the head section.

$(document).ready(function(){

// jQuery methods go here...

});

Page 11: J query

jQuery Selectors

• jQuery selectors allow to select and manipulate HTML element(s).

• jQuery selectors are used to "find" (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more. It's based on the existing CSS Selectors, and in addition, it has some own custom selectors.

• All selectors in jQuery start with the dollar sign

Page 12: J query

The #id Selector

The jQuery #id selector uses the id attribute of an HTML tag to find the specific element. An id should be unique within a page, so you should use the #id selector when you want to find a single, unique element.To find an element with a specific id, write a hash character, followed by the id of the element: $("#test")

The element Selector

jQuery element selector selects elements based on the element name.You can select all <p> elements on a page like this: $("p")

The .class SelectorThe jQuery class selector finds elements with a specific class.To find elements with a specific class, write a period character, followed by the name of the class: $(".test")

Page 13: J query

What are Events?

• All the different visitor's actions that a web page can respond to are called events.

• An event represents the precise moment when something happens.

• Examples: moving a mouse over an element selecting a radio button clicking on an element

Click() event

$("p").click(function(){ $(this).hide();});

Page 14: J query

Form.php

Page 15: J query

jQuery Validation

Page 16: J query

Beforevalidation

After validation

Page 17: J query

jQuery Animations• Animations• Built in

– fadeIn()– fadeOut()– hide()– show()– slideDown()– slideUp()– toggle()– slideToggle()– fadeTo()– animate()

• See also:– Easing Plug-in– jQuery User Interface: http://ui.jquery.com

Page 18: J query

Who’s using jQuery?

• Google• Dell• Bank of America• Mozilla• NetFlix• NB

Page 19: J query

If this presentation helped you, please visit our page facebook.com/baabtra and like it.

Thanks in advance.

www.baabtra.com | www.massbaab.com |www.baabte.com

Page 20: J query

Contact Us

Emarald Mall (Big Bazar Building)Mavoor Road, Kozhikode,Kerala, India.Ph: + 91 – 495 40 25 550

NC Complex, Near Bus StandMukkam, Kozhikode,Kerala, India.Ph: + 91 – 495 40 25 550

Start up VillageEranakulam,Kerala, India.

Email: [email protected]