Jquery Example PPT

65
http://www.youtube.com/kamleshutube JQUERY EXAMPLE

description

jQuery concepts, allowing you to add interactions and animations to your pages adopted by most popular sites on the Internet.Hundreds of plug-ins and function have been developed to extend jQuery's functionality,jqery PPT,Web Development

Transcript of Jquery Example PPT

Page 1: Jquery Example PPT

http://www.youtube.com/kamleshutube

JQUERY EXAMPLE

Page 2: Jquery Example PPT

SELECTORS / 1. BASIC

All Selector(“*”) Selects all elements.

Class Selector (“.class”) Matches all elements with the given name.

Element Selector (“element”) Selects all elements with the given tag name

ID Selector (“#id”) Selects a single element with the given id attribute.

Multiple Selector (“selector1,

selector2, selectorN”)

Selects the combined results of all the

specified selectors.

Page 3: Jquery Example PPT

http://www.youtube.com/watch?v=jWSodFG2XMg

Page 4: Jquery Example PPT

SELECTORS / 2. HIERARCHY

Child Selector (“parent > child”) Selects all direct child elements specified by "child" of elements specified by "parent".

Descendant Selector (“ancestor descendant”)

Selects all elements that are descendants of a given ancestor.

Next Adjacent

Selector (“prev + next”)

Selects all next elements matching "next"

that are immediately preceded by a sibling

"prev".

Next Siblings Selector (“prev ~

siblings”)

Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.

Page 5: Jquery Example PPT

http://www.youtube.com/watch?v=ATN8KoTONts

Page 6: Jquery Example PPT

SELECTORS / 3. BASIC FILTER:eq() Selector Select the element at index n within the

matched set.

:even Selector Selects even elements, zero-indexed

:first Selector Selects the first matched element.

:gt() Selector Select all elements at an index greater than

index within the matched set.

:header Selector Selects all elements that are headers, like

h1, h2, h3 and so on.

:last Selector Selects the last matched element.

:lt() Selector Select all elements at an index less than

index within the matched set.

:not() Selector Selects all elements that do not match the

given selector.

:odd Selector Selects odd elements, zero-indexed. See

also even.

Page 7: Jquery Example PPT

http://www.youtube.com/watch?v=pUXxG1oCgkE

Page 8: Jquery Example PPT

SELECTORS / 4. CONTENT FILTER

:contains() Selector Select all elements that contain the specified text.

:has() Selector Selects elements which contain at least one element that matches the specified selector.

:parent Selector Select all elements that are the parent of

another element, including text nodes.

Page 9: Jquery Example PPT

http://www.youtube.com/watch?v=1xu0clYY7-Y

Page 10: Jquery Example PPT

SELECTORS / 5. ATTRIBUTE[attribute|=value] Selects elements that have the specified attribute with a value

either equal to a given string or starting with that string followed by a hyphen (-).

[attribute*=value] Selects elements that have the specified attribute with a value containing the a given substring.

[attribute~=value] Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.

[attribute$=value] Selects elements that have the specified attribute with a value ending exactly with a given string.

[attribute=value] Selects all elements that are matched specified value

[attribute!=value] Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.

[attribute^=value] Selects elements that have the specified attribute with a value beginning exactly with a given string.

[attribute] Selects elements that have the specified

attribute, with any value.

[attribute=value][attribute2=value2]

Matches elements that match all of the specified attribute filters.

Page 11: Jquery Example PPT

http://www.youtube.com/watch?v=tdujPn8HNr4

Page 12: Jquery Example PPT

SELECTORS / 6. CHILD FILTER

:first-child Selector Selects all elements that are the first child of their parent.

:last-child Selector Selects all elements that are the last child of their parent.

:nth-child Selector Selects all elements that are the nth-child of their parent.

:only-child Selector Selects all elements that are the only child of their parent.

Page 13: Jquery Example PPT

http://www.youtube.com/watch?v=11tKyyhBBzY

Page 14: Jquery Example PPT

SELECTORS / 7. FORM (contd.) :button Selector Selects all button elements and elements of

type button.

:checkbox Selector Selects all elements of type checkbox.

:checked Selector Matches all elements that are checked.

:disabled Selector Selects all elements that are disabled.

:enabled Selector Selects all elements that are enabled.

:file Selector Selects all elements of type file.

:image Selector Selects all elements of type image.

Page 15: Jquery Example PPT

SELECTORS / 7. FORM:input Selector Selects all input, textarea, select and

button elements.

:password Selector Selects all elements of type password.

:radio Selector Selects all elements of type radio.

:reset Selector Selects all elements of type reset.

selected Selector Selects all elements that are selected.

:submit Selector Selects all elements of type submit.

:text Selector Selects all elements of type text.

Page 16: Jquery Example PPT

http://www.youtube.com/watch?v=9snkUllPv9A

Page 17: Jquery Example PPT

EVENTS / MOUSE EVENTS (contd.) .click( handler(eventObject) ) Bind an event handler to the "click" JavaScript

event, or trigger that event on an element.

.dblclick( handler(eventObject) ) Bind an event handler to the "dblclick"

JavaScript event, or trigger that event on an

element.

.focusout( handler(eventObject) ) Bind an event handler to the "focusout"

JavaScript event.

.hover( handler(eventObject) ) Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements.

.mousedown( handler(eventObject) )

Bind an event handler to the "mousedown"

JavaScript event, or trigger that event on an

element.

.mouseenter( handler(eventObject) )

Bind an event handler to be fired when the

mouse enters an element, or trigger that handler on an element.

Page 18: Jquery Example PPT

EVENTS / MOUSE EVENTS.mouseleave( handler(eventObject) )

Bind an event handler to be fired when the

mouse leaves an element, or trigger that handler on an element.

.mousemove( handler(eventObject) )

Bind an event handler to the "mousemove"

JavaScript event, or trigger that event on an

element.

.mouseout( handler(eventObject) )

Bind an event handler to the "mouseout"

JavaScript event, or trigger that event on an

element.

.mouseover( handler(eventObject) )

Bind an event handler to the "mouseover"

JavaScript event, or trigger that event on an

element.

.mouseup( handler(eventObject) )

Bind an event handler to the "mouseup"

JavaScript event, or trigger that event on an

element.

Page 19: Jquery Example PPT

http://www.youtube.com/watch?v=HDMIUaoiiMk

Page 20: Jquery Example PPT

EVENTS - FORM EVENTS

.blur( handler(eventObject) ) Bind an event handler to the "blur" JavaScript

event, or trigger that event on an element.

.focus( handler(eventObject) ) Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.

.change( handler(eventObject) ) Bind an event handler to the "change“ JavaScript event, or trigger that event on an element.

.select( handler(eventObject) ) Bind an event handler to the "select" JavaScript event, or trigger that event on an element.

.submit( handler(eventObject) ) Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.

Page 21: Jquery Example PPT

http://www.youtube.com/watch?v=Ltb0TUO8qsw

Page 22: Jquery Example PPT

EVENTS - EVENT OBJECT.pageX The mouse position relative to the left edge of the

document

.pageY The mouse position relative to the top edge of the document.

.type Describes the nature of the event.

.target The DOM element that initiated the event.

.preventDefault() If this method is called, the default action

of the event will not be triggered.

.isDefaultPrevented() Returns whether event.preventDefault() was ever called on this event object.

.which For key or button events, this attribute

indicates the specific button or key that was pressed

Page 23: Jquery Example PPT

http://www.youtube.com/watch?v=4PvYg4D2R1w

Page 24: Jquery Example PPT

ATTRIBUTES - CLASS

.addClass( class ) Adds the specified class(es) to each of the set of matched elements.

.removeClass( class ) Remove a single class, multiple classes, or all

classes from each element in the set of matched

elements.

.hasClass( class ) Determine whether any of the matched elements are

assigned the given class.

.toggleClass( class, switch ) Add or remove one or more classes from each

element in the set of matched elements, depending

on either the class's presence or the value of the

switch argument.

Page 25: Jquery Example PPT

http://www.youtube.com/watch?v=CPJpIpm7qCs

Page 26: Jquery Example PPT

CSS - POSITIONING

.scrollLeft() Get the current horizontal position of the scroll bar

for the first element in the set of matched elements.

.scrollLeft( value ) Set the current horizontal position of the scroll bar for

each of the set of matched elements.

.offset() Get the current coordinates of the first element in the set of matched elements, relative to the document.

.offset( coordinates ) Set the current coordinates of every element in the

set of matched elements, relative to the document.

.position() Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.

.scrollTop() Get the current vertical position of the scroll bar for

the first element in the set of matched elements.

.scrollTop( value ) Set the current vertical position of the scroll bar for

each of the set of matched elements.

Page 27: Jquery Example PPT

http://www.youtube.com/watch?v=zWX0ZzYrS_4

Page 28: Jquery Example PPT

TRAVERSING -TREE TRAVERSAL (cont.).children( [ selector ] ) Get the children of each element in the set of

matched elements, optionally filtered by a

selector

.closest( selector ) Get the first ancestor element that matches

the selector, beginning at the current

element and progressing up through the

DOM tree.

.find( selector ) Get the descendants of each element in the

current set of matched elements, filtered by a

selector.

.next( [ selector ] ) Get the immediately following sibling of each

element in the set of matched elements,

optionally filtered by a selector.

.nextAll( [ selector ] ) Get all following siblings of each element in

the set of matched elements, optionally

filtered by a selector.

Page 29: Jquery Example PPT

TRAVERSING -TREE TRAVERSAL (cont.)

.nextUntil( [ selector ] ) Get all following siblings of each element up

to but not including the element matched by

the selector.

.parent( [ selector ] ) Get the parent of each element in the current

set of matched elements, optionally filtered

by a selector.

.parents( [ selector ] ) Get the ancestors of each element in the

current set of matched elements, optionally

filtered by a selector.

.prev( [ selector ] ) Get the immediately preceding sibling of each

element in the set of matched elements,

optionally filtered by a selector.

Page 30: Jquery Example PPT

TRAVERSING -TREE TRAVERSAL

.prevAll( [ selector ] ) Get all preceding siblings of each element in

the set of matched elements, optionally filtered

by a selector.

.prevUntil( [ selector ] ) Get the ancestors of each element in the

current set of matched elements, optionally

filtered by a selector.

.siblings( [ selector ] ) Get the siblings of each element in the set of

matched elements, optionally filtered by a

selector.

Page 31: Jquery Example PPT

http://www.youtube.com/watch?v=1M4hThjV1vs

http://www.youtube.com/watch?v=_z74QVjOOiA

Page 32: Jquery Example PPT

TRAVERSING - FILTERING.eq( index ) Reduce the set of matched elements to the one at

the specified index.

.filter( selector ) Reduce the set of matched elements to those that

match the selector or pass the function's test.

.is( selector ) Check the current matched set of elements

against a selector and return true if at least one

of these elements matches the selector

.not() Remove elements from the set of matched

elements.

.slice( start, [ end ] ) Reduce the set of matched elements to a subset

specified by a range of indices.

.map( callback(index, domEl) ) Pass each element in the current matched set

through a function, producing a new jQuery

object containing the return values.

Page 33: Jquery Example PPT

http://www.youtube.com/watch?v=z_9IzPfxkrw

Page 34: Jquery Example PPT

TRAVERSING - MISCELLANEOUS

.add( selectors, [ context ] ) Add elements to the set of matched elements

.andSelf() Add the previous set of elements on the stack to

the current set.

.contents() Get the children of each element in the set of

matched elements, including text nodes.

.end() End the most recent filtering operation in the

current chain and return the set of matched

elements to its previous state.

Page 35: Jquery Example PPT

http://www.youtube.com/watch?v=rU1SNaVs2ic

Page 36: Jquery Example PPT

ATTRIBUTES - ATTR

.attr( attributeName ) Get the value of an attribute for the first element in the set of matched elements.

.attr( attributeName, value )

Set one or more attributes for the set of matched elements.

.removeAttr() Remove an attribute from each element

in the set of matched elements.

Page 37: Jquery Example PPT

http://www.youtube.com/watch?v=UvkCRCXHVzI

Page 38: Jquery Example PPT

ATTRIBUTES - HTML

.html() Get the HTML contents of the first

element in the set of matched elements.

.html( htmlString ) Set the HTML contents of each element

in the set of matched elements.

Page 39: Jquery Example PPT

http://www.youtube.com/watch?v=JqzA9T3OfNM

Page 40: Jquery Example PPT

ATTRIBUTES - TEXT

.text() Get the combined text contents of each

Element in the set of matched elements, including their descendants.

.text( textString ) Set the content of each element in the set of matched elements to the specified text.

Page 41: Jquery Example PPT

http://www.youtube.com/watch?v=NiQGohUxKiA

Page 42: Jquery Example PPT

ATTRIBUTES - VALUE

.val() Get the current value of the first element in the set of matched elements.

.val( value ) Set the value of each element in the set of matched elements.

Page 43: Jquery Example PPT

http://www.youtube.com/watch?v=o_K6q3QxJ7Y

Page 44: Jquery Example PPT

CSS - CSS

css( propertyName ) Get the value of a style property for

the first element in the set of matched elements.

.css( propertyName, value)

Set one or more CSS properties for

the set of matched elements.

Page 45: Jquery Example PPT

http://www.youtube.com/watch?v=ROewNE8mc_A

Page 46: Jquery Example PPT

CSS - HEIGHT & WIDTH (cont.).height( value ) Set the CSS height of every matched element.

element in the set of matched

elements.

.height() Get the current computed height for the first

.innerHeight() Get the current computed height for the first.

element in the set of matched elements,

including padding but not border

.innerWidth() Get the current computed width for the first

element in the set of matched elements,

including padding but not border.

.outerHeight() Get the current computed height for the first

element in the set of matched elements,

including padding, border, and optionally

margin.

.outerWidth() Get the current computed width for the first

element in the set of matched elements,

including padding and border.

Page 47: Jquery Example PPT

CSS - HEIGHT & WIDTH

.width( value ) Set the CSS width of each element in the set of

matched elements.

.width() Get the current computed width for the first element in the set of matched element

Page 48: Jquery Example PPT

http://www.youtube.com/watch?v=faxfelPFFjc

Page 49: Jquery Example PPT

MANIPULATION - INSIDE

.append( content ) Insert content, specified by the parameter, to the

end of each element in the set of matched

elements.

.appendTo( target ) Insert every element in the set of matched

elements to the end of the target.

.prepend( content ) Insert content, specified by the parameter, to the

beginning of each element in the set of matched

elements.

.prependTo( target ) Insert content, specified by the parameter, to the

end of each element in the set of matched

elements.

Page 50: Jquery Example PPT

http://www.youtube.com/watch?v=egkrz9baf9I

Page 51: Jquery Example PPT

MANIPULATION - OUTSIDE

.after( content ) Insert content, specified by the parameter, after each element in the set of matched elements.

.before( content ) Insert content, specified by the parameter, before each element in the set of matched elements.

.insertAfter( target ) Insert every element in the set of matched elements after the target.

.insertBefore( target ) Insert every element in the set of matched elements before the target.

Page 52: Jquery Example PPT

http://www.youtube.com/watch?v=cSBmIJJJ_XA

Page 53: Jquery Example PPT

MANIPULATION - AROUND

.wrap( wrappingElement ) Wrap an HTML structure around each element in

the set of matched elements.

.wrapAll( wrappingElement ) Wrap an HTML structure around all elements in

the set of matched elements.

.wrapInner( wrappingElement ) Wrap an HTML structure around the content of

each element in the set of matched elements.

Page 54: Jquery Example PPT

http://www.youtube.com/watch?v=cSBmIJJJ_XA

Page 55: Jquery Example PPT

MANIPULATION - REPLACING

.replaceWith( newContent ) Replace each element in the set of matched elements with the provided new content.

.replaceAll() A selector expression indicating which element(s) to replace.

Page 56: Jquery Example PPT

http://www.youtube.com/watch?v=WA6G1eVF7Po

Page 57: Jquery Example PPT

EVENTS - HANDLER ATTACHMENT .bind( eventType, [ eventData ], handler

(eventObject) )

Attach a handler to an event for the elements.

.unbind( eventType, handler

(eventObject) )

Remove a previously-attached event handler from the elements.

.die() Remove all event handlers previously

attached using .live() from the elements.

.live( eventType, eventData, handler ) Attach a handler to the event for all

elements which match the current

selector, now or in the future.

.one( eventType, [ eventData ], handler

(eventObject) )

Attach a handler to an event for the

elements. The handler is executed at

most once per element.

Page 58: Jquery Example PPT

http://www.youtube.com/watch?v=krpWZ7kIXt8

http://www.youtube.com/watch?v=Axa7kKbC4Ec

http://www.youtube.com/watch?v=Axa7kKbC4Ec

Page 59: Jquery Example PPT

EFFECTS - BASIC

.hide( duration, [ callback ] )

Hide the matched elements.

.show( duration, [ callback ] )

Display the matched elements.

Page 60: Jquery Example PPT

http://www.youtube.com/watch?v=674_VLph2vU

Page 61: Jquery Example PPT

EFFECTS - SLIDING

.slideDown( [ duration ], [ callback ] )

Display the matched elements with a sliding motion.

.slideToggle( [ duration ], [ callback ] )

Display or hide the matched elements with a sliding motion.

.slideUp( [ duration ], [ callback ] )

Hide the matched elements with a sliding motion.

Page 62: Jquery Example PPT

http://www.youtube.com/watch?v=2UQrqp4HKjw

Page 63: Jquery Example PPT

EFFECTS - FADING.fadeIn( [ duration ], [ callback ] )

Display the matched elements by fading them to opaque.

.fadeOut( [ duration ], [ callback ] )

Hide the matched elements by fading them to transparent.

.fadeTo( duration, opacity, [ callback ] )

Adjust the opacity of the matched elements.

Page 64: Jquery Example PPT

http://www.youtube.com/watch?v=g2c44rYWfmI

Page 65: Jquery Example PPT

Thank You