SlideShare a Scribd company logo
http://www.youtube.com/kamleshutube JQUERY EXAMPLE
SELECTORS / 1. BASIC Selects the combined results of all the specified selectors. Multiple Selector (“selector1, selector2, selectorN”) Selects a single element with the given id attribute. ID Selector (“#id”) Selects all elements with the given tag name Element Selector (“element”) Matches all elements with the given name. Class Selector (“.class”) Selects all elements. All Selector(“*”)
http:// www.youtube.com/watch?v =jWSodFG2XMg
SELECTORS / 2. HIERARCHY Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector. Next Siblings Selector (“prev ~ siblings”) Selects all next elements matching "next" that are immediately preceded by a sibling "prev". Next Adjacent Selector (“prev + next”) Selects all elements that are descendants of a given ancestor. Descendant Selector (“ancestor descendant”) Selects all direct child elements specified by "child" of elements specified by "parent". Child Selector (“parent > child”)
http:// www.youtube.com/watch?v =ATN8KoTONts
SELECTORS / 3. BASIC FILTER Selects odd elements, zero-indexed. See also even. :odd Selector Selects all elements that do not match the given selector. :not() Selector Select all elements at an index less than index within the matched set. :lt() Selector Selects the last matched element. :last Selector Selects all elements that are headers, like h1, h2, h3 and so on. :header Selector Select all elements at an index greater than index within the matched set. :gt() Selector Selects the first matched element. :first Selector Selects even elements, zero-indexed :even Selector Select the element at index n within the matched set. :eq() Selector
http:// www.youtube.com/watch?v =pUXxG1oCgkE
SELECTORS / 4. CONTENT FILTER Select all elements that are the parent of another element, including text nodes. :parent Selector Selects elements which contain at least one element that matches the specified selector. :has() Selector Select all elements that contain the specified text. :contains() Selector
http:// www.youtube.com/watch?v =1xu0clYY7-Y
SELECTORS / 5. ATTRIBUTE Matches elements that match all of the specified attribute filters. [attribute=value][attribute2=value2] Selects elements that have the specified attribute, with any value. [attribute] Selects elements that have the specified attribute with a value beginning exactly with a given string. [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 all elements that are matched specified value [attribute=value] Selects elements that have the specified attribute with a value ending exactly with a given string. [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 containing the a given substring. [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]
http:// www.youtube.com/watch?v =tdujPn8HNr4
SELECTORS / 6. CHILD FILTER Selects all elements that are the only child of their parent. :only-child Selector Selects all elements that are the nth-child of their parent. :nth-child Selector Selects all elements that are the last child of their parent. :last-child Selector Selects all elements that are the first child of their parent. :first-child Selector
http:// www.youtube.com/watch?v =11tKyyhBBzY
SELECTORS / 7. FORM (contd.)  Selects all elements of type image. :image Selector Selects all elements of type file. :file Selector Selects all elements that are enabled. :enabled Selector Selects all elements that are disabled. :disabled Selector Matches all elements that are checked. :checked Selector Selects all elements of type checkbox. :checkbox Selector Selects all button elements and elements of type button. :button Selector
SELECTORS / 7. FORM Selects all elements of type text. :text Selector Selects all elements of type submit. :submit Selector Selects all elements that are selected. selected Selector Selects all elements of type reset. :reset Selector Selects all elements of type radio. :radio Selector Selects all elements of type password. :password Selector Selects all input, textarea, select and button elements. :input Selector
http:// www.youtube.com/watch?v =9snkUllPv9A
EVENTS / MOUSE EVENTS (contd.)   Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. .mouseenter( handler(eventObject) ) Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element. .mousedown( handler(eventObject) ) Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements. .hover( handler(eventObject) ) Bind an event handler to the "focusout" JavaScript event. .focusout( handler(eventObject) ) Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element. .dblclick( handler(eventObject) ) Bind an event handler to the "click" JavaScript event, or trigger that event on an element. .click( handler(eventObject) )
EVENTS / MOUSE EVENTS Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element. .mouseup( handler(eventObject) ) Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element. .mouseover( handler(eventObject) ) Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. .mouseout( handler(eventObject) ) Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. .mousemove( handler(eventObject) ) Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. .mouseleave( handler(eventObject) )
http:// www.youtube.com/watch?v = HDMIUaoiiMk
EVENTS - FORM EVENTS Bind an event handler to the "focus" JavaScript event, or trigger that event on an element. .focus( handler(eventObject) ) Bind an event handler to the "submit" JavaScript  event, or trigger that event on an element. .submit( handler(eventObject) ) Bind an event handler to the "select" JavaScript event, or trigger that event on an element. .select( handler(eventObject) ) Bind an event handler to the "change“ JavaScript event, or trigger that event on an element. .change( handler(eventObject) ) Bind an event handler to the "blur" JavaScript event, or trigger that event on an element. .blur( handler(eventObject) )
http:// www.youtube.com/watch?v =Ltb0TUO8qsw
EVENTS - EVENT OBJECT Returns whether event.preventDefault() was ever called on this event object. .isDefaultPrevented() If this method is called, the default action of the event will not be triggered. .preventDefault() The DOM element that initiated the event. .target Describes the nature of the event. .type For key or button events, this attribute indicates the specific button or key that was pressed .which The mouse position relative to the top edge of the document. .pageY The mouse position relative to the left edge of the document .pageX
http:// www.youtube.com/watch?v =4PvYg4D2R1w
ATTRIBUTES - CLASS 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. .toggleClass( class, switch ) Determine whether any of the matched elements are assigned the given class. .hasClass( class ) Remove a single class, multiple classes, or all classes from each element in the set of matched elements. .removeClass( class ) Adds the specified class(es) to each of the set of matched elements. .addClass( class )
http:// www.youtube.com/watch?v =CPJpIpm7qCs
CSS - POSITIONING Set the current vertical position of the scroll bar for each of the set of matched elements. .scrollTop( value ) Get the current vertical position of the scroll bar for the first element in the set of matched elements. .scrollTop() Get the current coordinates of the first element in the set of matched elements, relative to the offset parent. .position() Set the current coordinates of every element in the set of matched elements, relative to the document. .offset( coordinates ) Get the current coordinates of the first element in the set of matched elements, relative to the document. .offset() Set the current horizontal position of the scroll bar for each of the set of matched elements. .scrollLeft( value ) Get the current horizontal position of the scroll bar for the first element in the set of matched elements.  .scrollLeft()
http:// www.youtube.com/watch?v =zWX0ZzYrS_4
TRAVERSING -TREE TRAVERSAL (cont.) Get all following siblings of each element in the set of matched elements, optionally filtered by a selector. .nextAll( [ selector ] ) Get the immediately following sibling of each element in the set of matched elements,  optionally filtered by a selector. .next( [ selector ] ) Get the descendants of each element in the current set of matched elements, filtered by a selector. .find( selector ) Get the first ancestor element that matches the selector, beginning at the current element and progressing up through the DOM tree. .closest( selector ) Get the children of each element in the set of matched elements, optionally filtered by a selector .children( [ selector ] )
TRAVERSING -TREE TRAVERSAL (cont.) Get the immediately preceding sibling of each element in the set of matched elements,  optionally filtered by a selector. .prev( [ selector ] ) Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. .parents( [ selector ] ) Get the parent of each element in the current set of matched elements, optionally filtered by a selector. .parent( [ selector ] ) Get all following siblings of each element up to but not including the element matched by the selector. .nextUntil( [ selector ] )
TRAVERSING -TREE TRAVERSAL  Get the siblings of each element in the set of matched elements, optionally filtered by a selector. .siblings( [ selector ] ) Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. .prevUntil( [ selector ] ) Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector. .prevAll( [ selector ] )
http:// www.youtube.com/watch?v =1M4hThjV1vs http:// www.youtube.com/watch?v =_z74QVjOOiA
TRAVERSING - FILTERING Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. .map( callback(index, domEl) ) Reduce the set of matched elements to a subset specified by a range of indices. .slice( start, [ end ] ) Remove elements from the set of matched elements. .not() Check the current matched set of elements against a selector and return true if at least one of these elements matches the selector .is( selector ) Reduce the set of matched elements to those that match the selector or pass the function's test. .filter( selector ) Reduce the set of matched elements to the one at the specified index. .eq( index )
http:// www.youtube.com/watch?v =z_9IzPfxkrw
TRAVERSING - MISCELLANEOUS End the most recent filtering operation in the current chain and return the set of matched elements to its previous state. .end() Get the children of each element in the set of matched elements, including text nodes. .contents() Add the previous set of elements on the stack to the current set. .andSelf() Add elements to the set of matched elements .add( selectors, [ context ] )
http:// www.youtube.com/watch?v =rU1SNaVs2ic
ATTRIBUTES - ATTR Remove an attribute from each element in the set of matched elements. .removeAttr() Set one or more attributes for the set of matched elements.  .attr( attributeName, value ) Get the value of an attribute for the first element in the set of matched elements. .attr( attributeName )
http:// www.youtube.com/watch?v = UvkCRCXHVzI
ATTRIBUTES - HTML Set the HTML contents of each element in the set of matched elements. .html( htmlString ) Get the HTML contents of the first element in the set of matched elements. .html()
http:// www.youtube.com/watch?v =JqzA9T3OfNM
ATTRIBUTES - TEXT Set the content of each element in the set of matched elements to the specified text. .text( textString ) Get the combined text contents of each Element in the set of matched elements, including their descendants. .text()
http:// www.youtube.com/watch?v = NiQGohUxKiA
ATTRIBUTES - VALUE Set the value of each element in the set of matched elements. .val( value ) Get the current value of the first element in the set of matched elements. .val()
http:// www.youtube.com/watch?v =o_K6q3QxJ7Y
CSS - CSS Set one or more CSS properties for the set of matched elements. .css( propertyName, value) Get the value of a style property for the first element in the set of matched  elements. css( propertyName )
http:// www.youtube.com/watch?v =ROewNE8mc_A
CSS - HEIGHT & WIDTH (cont.) Get the current computed width for the first element in the set of matched elements, including padding and border. .outerWidth() Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. .outerHeight() Get the current computed width for the first element in the set of matched elements, including padding but not border. .innerWidth() Get the current computed height for the first. element in the set of matched elements,  including padding but not border .innerHeight() Get the current computed height for the first .height() Set the CSS height of every matched element. element in the set of matched elements. .height( value )
CSS - HEIGHT & WIDTH Get the current computed width for the first element in the set of matched element .width() Set the CSS width of each element in the set of matched elements. .width( value )
http:// www.youtube.com/watch?v = faxfelPFFjc
MANIPULATION - INSIDE Insert content, specified by the parameter, to the end of each element in the set of matched elements. .prependTo( target ) Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. .prepend( content ) Insert every element in the set of matched elements to the end of the target. .appendTo( target ) Insert content, specified by the parameter, to the end of each element in the set of matched elements. .append( content )
http:// www.youtube.com/watch?v =egkrz9baf9I
MANIPULATION - OUTSIDE Insert every element in the set of matched elements after the target. .insertAfter( target ) Insert every element in the set of matched elements before the target. .insertBefore( target ) Insert content, specified by the parameter, before each element in the set of matched elements. .before( content ) Insert content, specified by the parameter, after each element in the set of matched elements. .after( content )
http:// www.youtube.com/watch?v = cSBmIJJJ_XA
MANIPULATION - AROUND Wrap an HTML structure around the content of each element in the set of matched elements. .wrapInner( wrappingElement ) Wrap an HTML structure around all elements in the set of matched elements. .wrapAll( wrappingElement ) Wrap an HTML structure around each element in the set of matched elements. .wrap( wrappingElement )
http:// www.youtube.com/watch?v = cSBmIJJJ_XA
MANIPULATION - REPLACING A selector expression indicating which element(s) to replace. .replaceAll() Replace each element in the set of matched elements with the provided new content. .replaceWith( newContent )
http:// www.youtube.com/watch?v =WA6G1eVF7Po
EVENTS - HANDLER ATTACHMENT  Remove a previously-attached event handler from the elements. .unbind( eventType, handler (eventObject) ) Attach a handler to an event for the elements. The handler is executed at most once per element. .one( eventType, [ eventData ], handler (eventObject) ) Attach a handler to the event for all elements which match the current selector, now or in the future. .live( eventType, eventData, handler ) Remove all event handlers previously attached using .live() from the elements. .die() Attach a handler to an event for the elements. .bind( eventType, [ eventData ], handler (eventObject) )
http:// www.youtube.com/watch?v =krpWZ7kIXt8 http:// www.youtube.com/watch?v =Axa7kKbC4Ec http:// www.youtube.com/watch?v =Axa7kKbC4Ec
EFFECTS - BASIC .hide( duration, [ callback ] ) Hide the matched elements. .show( duration, [ callback ] ) Display the matched elements.
http:// www.youtube.com/watch?v =674_VLph2vU
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.
http:// www.youtube.com/watch?v =2UQrqp4HKjw
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.
http:// www.youtube.com/watch?v =g2c44rYWfmI
Thank You

More Related Content

What's hot (19)

PPT
Swing
Bharat17485
 
PPT
Java eventhandling
Arati Gadgil
 
PPTX
Event Handling in Java
Ayesha Kanwal
 
PPTX
Advance Java Programming(CM5I) Event handling
Payal Dungarwal
 
PPTX
Chapter 11.5
sotlsoc
 
PPT
Graphical User Interface (GUI) - 2
PRN USM
 
PPTX
Jp notes
Sreedhar Chowdam
 
PPT
Event handling63
myrajendra
 
PPTX
tL20 event handling
teach4uin
 
PPTX
Event handling in Java(part 1)
RAJITHARAMACHANDRAN1
 
PDF
Web Design & Development - Session 6
Shahrzad Peyman
 
PPT
Java Event Handling
Shraddha
 
PPTX
Event handling
swapnac12
 
PDF
JAVA GUI PART III
OXUS 20
 
PPT
Synapseindia dotnet development chapter 14 event-driven programming
Synapseindiappsdevelopment
 
PDF
Ajp notes-chapter-03
Ankit Dubey
 
PDF
C# Delegates and Event Handling
Jussi Pohjolainen
 
PDF
jQuery Tutorial For Beginners | Developing User Interface (UI) Using jQuery |...
Edureka!
 
Swing
Bharat17485
 
Java eventhandling
Arati Gadgil
 
Event Handling in Java
Ayesha Kanwal
 
Advance Java Programming(CM5I) Event handling
Payal Dungarwal
 
Chapter 11.5
sotlsoc
 
Graphical User Interface (GUI) - 2
PRN USM
 
Jp notes
Sreedhar Chowdam
 
Event handling63
myrajendra
 
tL20 event handling
teach4uin
 
Event handling in Java(part 1)
RAJITHARAMACHANDRAN1
 
Web Design & Development - Session 6
Shahrzad Peyman
 
Java Event Handling
Shraddha
 
Event handling
swapnac12
 
JAVA GUI PART III
OXUS 20
 
Synapseindia dotnet development chapter 14 event-driven programming
Synapseindiappsdevelopment
 
Ajp notes-chapter-03
Ankit Dubey
 
C# Delegates and Event Handling
Jussi Pohjolainen
 
jQuery Tutorial For Beginners | Developing User Interface (UI) Using jQuery |...
Edureka!
 

Viewers also liked (16)

PPS
دورة هل انت متردد
said shoaib
 
PPTX
Presentasi perencanaan sistem refrigerasi miniatur ice rink
Maya Fatriyana
 
DOC
Greske na sapu
nikolinapusara
 
PPTX
KinezioloĹĄka metodika u RN
Romana Bajrić Havić
 
PPTX
Web 2.0
HĂźseyin Bicen
 
PPT
Joomla tutorial
Kaml Sah
 
PPTX
Web application using JSP
Kaml Sah
 
PPT
Webサーバ勉強会
とも つだ
 
PPTX
Web 2.0 AraçlarĹ
HĂźseyin Bicen
 
PPT
Facebook Feature (Like,Unlike,Comment)
Kaml Sah
 
PPTX
Web 2.0 sunumu
HĂźseyin Bicen
 
PPT
Access specifier in java
Kaml Sah
 
PPTX
Materyal Tasarım Öğeleri
HĂźseyin Bicen
 
PPT
Toshiba Vs. Dell
said shoaib
 
PPTX
دورة بناء الثقة بالنفس
said shoaib
 
PPT
J2EE - JSP-Servlet- Container - Components
Kaml Sah
 
دورة هل انت متردد
said shoaib
 
Presentasi perencanaan sistem refrigerasi miniatur ice rink
Maya Fatriyana
 
Greske na sapu
nikolinapusara
 
KinezioloĹĄka metodika u RN
Romana Bajrić Havić
 
Web 2.0
HĂźseyin Bicen
 
Joomla tutorial
Kaml Sah
 
Web application using JSP
Kaml Sah
 
Webサーバ勉強会
とも つだ
 
Web 2.0 AraçlarĹ
HĂźseyin Bicen
 
Facebook Feature (Like,Unlike,Comment)
Kaml Sah
 
Web 2.0 sunumu
HĂźseyin Bicen
 
Access specifier in java
Kaml Sah
 
Materyal Tasarım Öğeleri
HĂźseyin Bicen
 
Toshiba Vs. Dell
said shoaib
 
دورة بناء الثقة بالنفس
said shoaib
 
J2EE - JSP-Servlet- Container - Components
Kaml Sah
 
Ad

Similar to JQUERY EXAMPLE for Web Developer (Video Training Tutorial) (20)

PDF
J query 1.5-visual-cheat-sheet
Ying wei (Joe) Chou
 
PDF
J query 17-visual-cheat-sheet1
sdcasas
 
PDF
J query 1.7 cheat sheet
maamir farooq
 
PDF
VISUAL CHEAT SHEET
Danilo Sousa
 
PPT
J query lecture 1
Waseem Lodhi
 
PPTX
Working With JQuery Part1
saydin_soft
 
KEY
An in-depth look at jQuery
Paul Bakaus
 
PPTX
JQuery
SelmanJagxhiu
 
PPTX
JQuery
DevTalk
 
PPTX
Iniciando com jquery
Danilo Sousa
 
PDF
Introduzione JQuery
orestJump
 
PDF
jQuery for beginners
Siva Arunachalam
 
PDF
jQuery BootCamp : Creating the Wrapped Element Set
Wildan Maulana
 
PPTX
Introduction to JQuery
Muhammad Afzal Qureshi
 
PPTX
jQuery
Julie Iskander
 
PPTX
Jquery Complete Presentation along with Javascript Basics
EPAM Systems
 
ODP
Jquery- One slide completing all JQuery
Knoldus Inc.
 
PDF
Introduction to jQuery
Zeeshan Khan
 
PPTX
jQuery basics for Beginners
Pooja Saxena
 
PPT
Jquery 3
Manish Kumar Singh
 
J query 1.5-visual-cheat-sheet
Ying wei (Joe) Chou
 
J query 17-visual-cheat-sheet1
sdcasas
 
J query 1.7 cheat sheet
maamir farooq
 
VISUAL CHEAT SHEET
Danilo Sousa
 
J query lecture 1
Waseem Lodhi
 
Working With JQuery Part1
saydin_soft
 
An in-depth look at jQuery
Paul Bakaus
 
JQuery
SelmanJagxhiu
 
JQuery
DevTalk
 
Iniciando com jquery
Danilo Sousa
 
Introduzione JQuery
orestJump
 
jQuery for beginners
Siva Arunachalam
 
jQuery BootCamp : Creating the Wrapped Element Set
Wildan Maulana
 
Introduction to JQuery
Muhammad Afzal Qureshi
 
jQuery
Julie Iskander
 
Jquery Complete Presentation along with Javascript Basics
EPAM Systems
 
Jquery- One slide completing all JQuery
Knoldus Inc.
 
Introduction to jQuery
Zeeshan Khan
 
jQuery basics for Beginners
Pooja Saxena
 
Jquery 3
Manish Kumar Singh
 
Ad

Recently uploaded (20)

PPT
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
PDF
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
PPTX
How Physics Enhances Our Quality of Life.pptx
AngeliqueTolentinoDe
 
PPTX
Project 4 PART 1 AI Assistant Vocational Education
barmanjit380
 
PDF
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
KaryanaTantri21
 
PDF
DIGESTION OF CARBOHYDRATES ,PROTEINS AND LIPIDS
raviralanaresh2
 
PPTX
How to Create & Manage Stages in Odoo 18 Helpdesk
Celine George
 
PPTX
How to Manage Wins & Losses in Odoo 18 CRM
Celine George
 
PDF
Rapid Mathematics Assessment Score sheet for all Grade levels
DessaCletSantos
 
PDF
CAD25 Gbadago and Fafa Presentation Revised-Aston Business School, UK.pdf
Kweku Zurek
 
PDF
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
PPTX
Comparing Translational and Rotational Motion.pptx
AngeliqueTolentinoDe
 
PPTX
ENGLISH -PPT- Week1 Quarter1 -day-1.pptx
garcialhavz
 
PPT
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
PDF
Wikinomics How Mass Collaboration Changes Everything Don Tapscott
wcsqyzf5909
 
PDF
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
DOCX
MUSIC AND ARTS 5 DLL MATATAG LESSON EXEMPLAR QUARTER 1_Q1_W1.docx
DianaValiente5
 
PPTX
How to use grouped() method in Odoo 18 - Odoo Slides
Celine George
 
PPTX
How to Add New Item in CogMenu in Odoo 18
Celine George
 
PPTX
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
How Physics Enhances Our Quality of Life.pptx
AngeliqueTolentinoDe
 
Project 4 PART 1 AI Assistant Vocational Education
barmanjit380
 
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
KaryanaTantri21
 
DIGESTION OF CARBOHYDRATES ,PROTEINS AND LIPIDS
raviralanaresh2
 
How to Create & Manage Stages in Odoo 18 Helpdesk
Celine George
 
How to Manage Wins & Losses in Odoo 18 CRM
Celine George
 
Rapid Mathematics Assessment Score sheet for all Grade levels
DessaCletSantos
 
CAD25 Gbadago and Fafa Presentation Revised-Aston Business School, UK.pdf
Kweku Zurek
 
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
Comparing Translational and Rotational Motion.pptx
AngeliqueTolentinoDe
 
ENGLISH -PPT- Week1 Quarter1 -day-1.pptx
garcialhavz
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
Wikinomics How Mass Collaboration Changes Everything Don Tapscott
wcsqyzf5909
 
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
MUSIC AND ARTS 5 DLL MATATAG LESSON EXEMPLAR QUARTER 1_Q1_W1.docx
DianaValiente5
 
How to use grouped() method in Odoo 18 - Odoo Slides
Celine George
 
How to Add New Item in CogMenu in Odoo 18
Celine George
 
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 

JQUERY EXAMPLE for Web Developer (Video Training Tutorial)

  • 2. SELECTORS / 1. BASIC Selects the combined results of all the specified selectors. Multiple Selector (“selector1, selector2, selectorN”) Selects a single element with the given id attribute. ID Selector (“#id”) Selects all elements with the given tag name Element Selector (“element”) Matches all elements with the given name. Class Selector (“.class”) Selects all elements. All Selector(“*”)
  • 4. SELECTORS / 2. HIERARCHY Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector. Next Siblings Selector (“prev ~ siblings”) Selects all next elements matching "next" that are immediately preceded by a sibling "prev". Next Adjacent Selector (“prev + next”) Selects all elements that are descendants of a given ancestor. Descendant Selector (“ancestor descendant”) Selects all direct child elements specified by "child" of elements specified by "parent". Child Selector (“parent > child”)
  • 6. SELECTORS / 3. BASIC FILTER Selects odd elements, zero-indexed. See also even. :odd Selector Selects all elements that do not match the given selector. :not() Selector Select all elements at an index less than index within the matched set. :lt() Selector Selects the last matched element. :last Selector Selects all elements that are headers, like h1, h2, h3 and so on. :header Selector Select all elements at an index greater than index within the matched set. :gt() Selector Selects the first matched element. :first Selector Selects even elements, zero-indexed :even Selector Select the element at index n within the matched set. :eq() Selector
  • 8. SELECTORS / 4. CONTENT FILTER Select all elements that are the parent of another element, including text nodes. :parent Selector Selects elements which contain at least one element that matches the specified selector. :has() Selector Select all elements that contain the specified text. :contains() Selector
  • 10. SELECTORS / 5. ATTRIBUTE Matches elements that match all of the specified attribute filters. [attribute=value][attribute2=value2] Selects elements that have the specified attribute, with any value. [attribute] Selects elements that have the specified attribute with a value beginning exactly with a given string. [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 all elements that are matched specified value [attribute=value] Selects elements that have the specified attribute with a value ending exactly with a given string. [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 containing the a given substring. [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]
  • 12. SELECTORS / 6. CHILD FILTER Selects all elements that are the only child of their parent. :only-child Selector Selects all elements that are the nth-child of their parent. :nth-child Selector Selects all elements that are the last child of their parent. :last-child Selector Selects all elements that are the first child of their parent. :first-child Selector
  • 14. SELECTORS / 7. FORM (contd.) Selects all elements of type image. :image Selector Selects all elements of type file. :file Selector Selects all elements that are enabled. :enabled Selector Selects all elements that are disabled. :disabled Selector Matches all elements that are checked. :checked Selector Selects all elements of type checkbox. :checkbox Selector Selects all button elements and elements of type button. :button Selector
  • 15. SELECTORS / 7. FORM Selects all elements of type text. :text Selector Selects all elements of type submit. :submit Selector Selects all elements that are selected. selected Selector Selects all elements of type reset. :reset Selector Selects all elements of type radio. :radio Selector Selects all elements of type password. :password Selector Selects all input, textarea, select and button elements. :input Selector
  • 17. EVENTS / MOUSE EVENTS (contd.) Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. .mouseenter( handler(eventObject) ) Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element. .mousedown( handler(eventObject) ) Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements. .hover( handler(eventObject) ) Bind an event handler to the "focusout" JavaScript event. .focusout( handler(eventObject) ) Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element. .dblclick( handler(eventObject) ) Bind an event handler to the "click" JavaScript event, or trigger that event on an element. .click( handler(eventObject) )
  • 18. EVENTS / MOUSE EVENTS Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element. .mouseup( handler(eventObject) ) Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element. .mouseover( handler(eventObject) ) Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. .mouseout( handler(eventObject) ) Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. .mousemove( handler(eventObject) ) Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. .mouseleave( handler(eventObject) )
  • 20. EVENTS - FORM EVENTS Bind an event handler to the "focus" JavaScript event, or trigger that event on an element. .focus( handler(eventObject) ) Bind an event handler to the "submit" JavaScript event, or trigger that event on an element. .submit( handler(eventObject) ) Bind an event handler to the "select" JavaScript event, or trigger that event on an element. .select( handler(eventObject) ) Bind an event handler to the "change“ JavaScript event, or trigger that event on an element. .change( handler(eventObject) ) Bind an event handler to the "blur" JavaScript event, or trigger that event on an element. .blur( handler(eventObject) )
  • 22. EVENTS - EVENT OBJECT Returns whether event.preventDefault() was ever called on this event object. .isDefaultPrevented() If this method is called, the default action of the event will not be triggered. .preventDefault() The DOM element that initiated the event. .target Describes the nature of the event. .type For key or button events, this attribute indicates the specific button or key that was pressed .which The mouse position relative to the top edge of the document. .pageY The mouse position relative to the left edge of the document .pageX
  • 24. ATTRIBUTES - CLASS 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. .toggleClass( class, switch ) Determine whether any of the matched elements are assigned the given class. .hasClass( class ) Remove a single class, multiple classes, or all classes from each element in the set of matched elements. .removeClass( class ) Adds the specified class(es) to each of the set of matched elements. .addClass( class )
  • 26. CSS - POSITIONING Set the current vertical position of the scroll bar for each of the set of matched elements. .scrollTop( value ) Get the current vertical position of the scroll bar for the first element in the set of matched elements. .scrollTop() Get the current coordinates of the first element in the set of matched elements, relative to the offset parent. .position() Set the current coordinates of every element in the set of matched elements, relative to the document. .offset( coordinates ) Get the current coordinates of the first element in the set of matched elements, relative to the document. .offset() Set the current horizontal position of the scroll bar for each of the set of matched elements. .scrollLeft( value ) Get the current horizontal position of the scroll bar for the first element in the set of matched elements. .scrollLeft()
  • 28. TRAVERSING -TREE TRAVERSAL (cont.) Get all following siblings of each element in the set of matched elements, optionally filtered by a selector. .nextAll( [ selector ] ) Get the immediately following sibling of each element in the set of matched elements, optionally filtered by a selector. .next( [ selector ] ) Get the descendants of each element in the current set of matched elements, filtered by a selector. .find( selector ) Get the first ancestor element that matches the selector, beginning at the current element and progressing up through the DOM tree. .closest( selector ) Get the children of each element in the set of matched elements, optionally filtered by a selector .children( [ selector ] )
  • 29. TRAVERSING -TREE TRAVERSAL (cont.) Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector. .prev( [ selector ] ) Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. .parents( [ selector ] ) Get the parent of each element in the current set of matched elements, optionally filtered by a selector. .parent( [ selector ] ) Get all following siblings of each element up to but not including the element matched by the selector. .nextUntil( [ selector ] )
  • 30. TRAVERSING -TREE TRAVERSAL Get the siblings of each element in the set of matched elements, optionally filtered by a selector. .siblings( [ selector ] ) Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. .prevUntil( [ selector ] ) Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector. .prevAll( [ selector ] )
  • 31. http:// www.youtube.com/watch?v =1M4hThjV1vs http:// www.youtube.com/watch?v =_z74QVjOOiA
  • 32. TRAVERSING - FILTERING Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. .map( callback(index, domEl) ) Reduce the set of matched elements to a subset specified by a range of indices. .slice( start, [ end ] ) Remove elements from the set of matched elements. .not() Check the current matched set of elements against a selector and return true if at least one of these elements matches the selector .is( selector ) Reduce the set of matched elements to those that match the selector or pass the function's test. .filter( selector ) Reduce the set of matched elements to the one at the specified index. .eq( index )
  • 34. TRAVERSING - MISCELLANEOUS End the most recent filtering operation in the current chain and return the set of matched elements to its previous state. .end() Get the children of each element in the set of matched elements, including text nodes. .contents() Add the previous set of elements on the stack to the current set. .andSelf() Add elements to the set of matched elements .add( selectors, [ context ] )
  • 36. ATTRIBUTES - ATTR Remove an attribute from each element in the set of matched elements. .removeAttr() Set one or more attributes for the set of matched elements. .attr( attributeName, value ) Get the value of an attribute for the first element in the set of matched elements. .attr( attributeName )
  • 38. ATTRIBUTES - HTML Set the HTML contents of each element in the set of matched elements. .html( htmlString ) Get the HTML contents of the first element in the set of matched elements. .html()
  • 40. ATTRIBUTES - TEXT Set the content of each element in the set of matched elements to the specified text. .text( textString ) Get the combined text contents of each Element in the set of matched elements, including their descendants. .text()
  • 42. ATTRIBUTES - VALUE Set the value of each element in the set of matched elements. .val( value ) Get the current value of the first element in the set of matched elements. .val()
  • 44. CSS - CSS Set one or more CSS properties for the set of matched elements. .css( propertyName, value) Get the value of a style property for the first element in the set of matched elements. css( propertyName )
  • 46. CSS - HEIGHT & WIDTH (cont.) Get the current computed width for the first element in the set of matched elements, including padding and border. .outerWidth() Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. .outerHeight() Get the current computed width for the first element in the set of matched elements, including padding but not border. .innerWidth() Get the current computed height for the first. element in the set of matched elements, including padding but not border .innerHeight() Get the current computed height for the first .height() Set the CSS height of every matched element. element in the set of matched elements. .height( value )
  • 47. CSS - HEIGHT & WIDTH Get the current computed width for the first element in the set of matched element .width() Set the CSS width of each element in the set of matched elements. .width( value )
  • 49. MANIPULATION - INSIDE Insert content, specified by the parameter, to the end of each element in the set of matched elements. .prependTo( target ) Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. .prepend( content ) Insert every element in the set of matched elements to the end of the target. .appendTo( target ) Insert content, specified by the parameter, to the end of each element in the set of matched elements. .append( content )
  • 51. MANIPULATION - OUTSIDE Insert every element in the set of matched elements after the target. .insertAfter( target ) Insert every element in the set of matched elements before the target. .insertBefore( target ) Insert content, specified by the parameter, before each element in the set of matched elements. .before( content ) Insert content, specified by the parameter, after each element in the set of matched elements. .after( content )
  • 53. MANIPULATION - AROUND Wrap an HTML structure around the content of each element in the set of matched elements. .wrapInner( wrappingElement ) Wrap an HTML structure around all elements in the set of matched elements. .wrapAll( wrappingElement ) Wrap an HTML structure around each element in the set of matched elements. .wrap( wrappingElement )
  • 55. MANIPULATION - REPLACING A selector expression indicating which element(s) to replace. .replaceAll() Replace each element in the set of matched elements with the provided new content. .replaceWith( newContent )
  • 57. EVENTS - HANDLER ATTACHMENT Remove a previously-attached event handler from the elements. .unbind( eventType, handler (eventObject) ) Attach a handler to an event for the elements. The handler is executed at most once per element. .one( eventType, [ eventData ], handler (eventObject) ) Attach a handler to the event for all elements which match the current selector, now or in the future. .live( eventType, eventData, handler ) Remove all event handlers previously attached using .live() from the elements. .die() Attach a handler to an event for the elements. .bind( eventType, [ eventData ], handler (eventObject) )
  • 58. http:// www.youtube.com/watch?v =krpWZ7kIXt8 http:// www.youtube.com/watch?v =Axa7kKbC4Ec http:// www.youtube.com/watch?v =Axa7kKbC4Ec
  • 59. EFFECTS - BASIC .hide( duration, [ callback ] ) Hide the matched elements. .show( duration, [ callback ] ) Display the matched elements.
  • 61. 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.
  • 63. 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.