狠狠撸

狠狠撸Share a Scribd company logo
Beginner’s essential
jQuery Cheat Sheet
Write less, and do more!
An essential tool for rapid web development.
#################
TABLE OF CONTENTS
Selectors 3
Attributes / CSS 5
Manipulation 6
Traversing 7
Events 8
Effects 10
AJAX 11
Core 12
of
2 13
SELECTORS
Basics
*
.class
element
#id
selector1, selectorN, …
Heirarchy
parent > child
ancestor descendant
prev + next
prev ~ siblings
Basic Filters
:animated
:eq()
:even
:first
:gt()
:header
:lang()
:last
:lt()
:not()
:odd
:root
:target
Content Filters
:contains()
:empty
:has()
:parent
Visibility Filters
:hidden
:visible
Attribute
[name|="value"]
[name*="value"]
[name~="value"]
[name$="value"]
[name="value"]
[name!="value"]
[name^="value"]
[name]
[name="value"][name2="value2"]
Child Filters
:first-child
:first-of-type
of
3 13
:last-child
:last-of-type
:nth-child()
:nth-last-child()
:nth-last-of-type()
:nth-of-type()
:only-child
:only-of-type()
length
%
border-box | padding-box |
content-box | no-clip
Forms
:button
:checkbox
:checked
:disabled
:enabled
:focus
:file
:image
:input
:password
:radio
:reset
:selected
:submit
:text
of
4 13
ATTRIBUTES / CSS
Attributes
.attr()
.prop()
.removeAttr()
.removeProp()
.val()
CSS
.addClass()
.css()
jQuery.cssHooks
jQuery.cssNumber
jQuery.escapeSelector()
.hasClass()
.removeClass()
.toggleClass()
Dimensions
.height()
.innerHeight()
.innerWidth()
.outerHeight()
.outerWidth()
.width()
Offset
.offset()
.offsetParent()
.position()
.scrollLeft()
.scrollTop()
Data
jQuery.data()
.data()
jQuery.hasData()
jQuery.removeData()
.removeData()?
of
5 13
MANIPULATION
Copying
.clone()
DOM Insertion, Around
.wrap()
.wrapAll()
.wrapInner()
DOM Insertion, Inside
.append()
.appendTo()
.html()
.prepend()
.prependTo()
.text()
DOM Insertion, Outside
.after()
.before()
.insertAfter()
.insertBefore()
DOM Removal
.detach()
.empty()
.remove()
.unwrap()
DOM Replacement
.replaceAll()
.replaceWith()?
of
6 13
TRAVERSING
Filtering
.eq()
.filter()
.first()
.has()
.is()
.last()
.map()
.not()
.slice()
Miscellaneous Traversing
.add()
.addBack()
.andSelf()
.contents()
.each()
.end()
Tree Traversal
.children()
.closest()
.find()
.next()
.nextAll()
.nextUntil()
.parent()
.parents()
.parentsUntil()
.prev()
.prevAll()
.prevUntil()
.siblings()?
of
7 13
EVENTS
Browser Events
.error()
.resize()
.scroll()
Document Loading
.load()
.ready()
.unload()
Event Handler Attachment
.bind()
.delegate()
.die()
.live()
.off()
.on()
.one()
.trigger()
.triggerHandler()
.unbind()
.undelegate()
Form Events
.blur()
.change()
.focus()
.focusin()
.focusout()
.select()
.submit()
Keyboard Events
.keydown()
.keypress()
.keyup()
Mouse Events
.click()
.contextMenu()
.dblclick()
.hover()
.mousedown()
.mouseenter()
.mouseleave()
.mousemove()
.mouseout()
.mouseover()
.mouseup()
.toggle()
Event Object
event.currentTarget
event.delegateTarget
of
8 13
event.data
event.isDefaultPrevented()
event.isImmediatePropagationStop
ped()
event.isPropagationStopped()
event.metaKey
event.namespace
event.pageX
event.pageY
event.preventDefault()
event.relatedTarget
event.result
event.stopImmediatePropagation()
event.stopPropagation()
event.target
event.timeStamp
event.type
event.which?
of
9 13
EFFECTS
Basics
.hide()
.show()
.toggle()
Custom
.animate()
.clearQueue()
.delay()
.dequeue()
jQuery.dequeue()
.finish()
jQuery.fx.interval
jQuery.fx.off
jQuery.speed
.queue()
jQuery.queue()
.stop()
Fading
.fadeIn()
.fadeOut()
.fadeTo()
.fadeToggle()
Sliding
.slideDown()
.slideToggle()
.slideUp()?
of
10 13
AJAX
Global Ajax Event Handlers
.ajaxComplete()
.ajaxError()
.ajaxSend()
.ajaxStart()
.ajaxStop()
.ajaxSuccess()
Helper Functions
jQuery.param()
.serialize()
.serializeArray()
Low-Level Interface
jQuery.ajax()
jQuery.prefilter()
jQuery.ajaxSetup()
jQuery.ajaxTransport()
Shorthand Methods
jQuery.get()
jQuery.getJSON()
jQuery.getScript()
jQuery.post()
.load()?
of
11 13
CORE
jQuery Object
jQuery()
jQuery.noConflict()
jQuery.sub()
jQuery.holdReady()
jQuery.when()
Deferred Object
jQuery.Deferred()
deferred.always()
deferred.done()
deferred.fail()
deferred.isRejected()
deferred.isResolved()
deferred.notify()
deferred.notifyWith()
deferred.pipe()
deferred.progress()
deferred.promise()
deferred.reject()
deferred.rejectWith()
deferred.resolve()
deferred.resolveWith()
deferred.state()
deferred.then()
.promise()
Utilities
jQuery.boxModel
jQuery.browser
jQuery.contains()
jQuery.each()
jQuery.extend()
jQuery.globalEval()
jQuery.grep()
jQuery.inArray()
jQuery.isArray()
jQuery.isEmptyObject()
jQuery.isFunction()
jQuery.isNumeric()
jQuery.isPlainObject()
jQuery.isWindow()
jQuery.isXMLDoc()
jQuery.makeArray()
jQuery.map()
jQuery.merge()
jQuery.noop()
jQuery.now()
jQuery.parseHTML()
jQuery.parseJSON()
jQuery.parseXML()
jQuery.proxy()
of
12 13
jQuery.support
jQuery.trim()
jQuery.type()
jQuery.unique()
jQuery.uniqueSort()
DOM Element Methods
.get()
.index()
.size()
.toArray()
Internals
.jquery
.context
jQuery.error()
.length
.pushStack()
.selector
Callbacks Object
jQuery.Callbacks()
callbacks.add()
callbacks.disable()
callbacks.disabled()
callbacks.empty()
callbacks.fire()
callbacks.fired()
callbacks.fireWith()
callbacks.has()
callbacks.lock()
callbacks.locked()
callbacks.remove()
of
13 13
Ad

Recommended

Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013
Sébastien Deleuze
?
Jquery Complete Presentation along with Javascript Basics
Jquery Complete Presentation along with Javascript Basics
EPAM Systems
?
Lecture 6: Client Side Programming 2
Lecture 6: Client Side Programming 2
Artificial Intelligence Institute at UofSC
?
Story for a Ruby on Rails Single Engineer
Story for a Ruby on Rails Single Engineer
TylerJohnson988371
?
Web Front End - (HTML5, CSS3, JavaScript) ++
Web Front End - (HTML5, CSS3, JavaScript) ++
ubshreenath
?
jQuery Rescue Adventure
jQuery Rescue Adventure
Allegient
?
[FT-7][snowmantw] How to make a new functional language and make the world be...
[FT-7][snowmantw] How to make a new functional language and make the world be...
Functional Thursday
?
Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
?
JavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM Manipulation
borkweb
?
Game jump: frontend introduction #1
Game jump: frontend introduction #1
Sebastian Po?oga
?
J Query Public
J Query Public
pradeepsilamkoti
?
Css Selectors
Css Selectors
Igor Ognichenko
?
J query training
J query training
FIS - Fidelity Information Services
?
jQuery
jQuery
Vishwa Mohan
?
Don't Worry jQuery is very Easy:Learning Tips For jQuery
Don't Worry jQuery is very Easy:Learning Tips For jQuery
shabab shihan
?
JQuery
JQuery
DevTalk
?
jQuery - Tips And Tricks
jQuery - Tips And Tricks
Lester Lievens
?
Mootools selectors
Mootools selectors
ARIF MAHMUD RANA
?
jQuery
jQuery
bhasula
?
CSS3 vs jQuery
CSS3 vs jQuery
Web Essentials Co., Ltd.
?
Introduction to jQuery - The basics
Introduction to jQuery - The basics
Maher Hossain
?
MYSQL DATABASE INTRODUCTION TO JAVASCRIPT.pptx
MYSQL DATABASE INTRODUCTION TO JAVASCRIPT.pptx
ArjayBalberan1
?
68837.ppt
68837.ppt
BruceLee275640
?
J query1
J query1
Manav Prasad
?
J Query The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Library
rsnarayanan
?
JavaScript!
JavaScript!
RTigger
?
Jquery optimization-tips
Jquery optimization-tips
anubavam-techkt
?
Intro to jQuery
Intro to jQuery
Alan Hecht
?
SAP_S4HANA_EWM_Food_Processing_Industry.pptx
SAP_S4HANA_EWM_Food_Processing_Industry.pptx
vemulavenu484
?
Pause Travail 22 Hostiou Girard 12 juin 2025.pdf
Pause Travail 22 Hostiou Girard 12 juin 2025.pdf
Institut de l'Elevage - Idele
?

More Related Content

Similar to wsu-jquery-cheat-sheet.pdf (20)

JavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM Manipulation
borkweb
?
Game jump: frontend introduction #1
Game jump: frontend introduction #1
Sebastian Po?oga
?
J Query Public
J Query Public
pradeepsilamkoti
?
Css Selectors
Css Selectors
Igor Ognichenko
?
J query training
J query training
FIS - Fidelity Information Services
?
jQuery
jQuery
Vishwa Mohan
?
Don't Worry jQuery is very Easy:Learning Tips For jQuery
Don't Worry jQuery is very Easy:Learning Tips For jQuery
shabab shihan
?
JQuery
JQuery
DevTalk
?
jQuery - Tips And Tricks
jQuery - Tips And Tricks
Lester Lievens
?
Mootools selectors
Mootools selectors
ARIF MAHMUD RANA
?
jQuery
jQuery
bhasula
?
CSS3 vs jQuery
CSS3 vs jQuery
Web Essentials Co., Ltd.
?
Introduction to jQuery - The basics
Introduction to jQuery - The basics
Maher Hossain
?
MYSQL DATABASE INTRODUCTION TO JAVASCRIPT.pptx
MYSQL DATABASE INTRODUCTION TO JAVASCRIPT.pptx
ArjayBalberan1
?
68837.ppt
68837.ppt
BruceLee275640
?
J query1
J query1
Manav Prasad
?
J Query The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Library
rsnarayanan
?
JavaScript!
JavaScript!
RTigger
?
Jquery optimization-tips
Jquery optimization-tips
anubavam-techkt
?
Intro to jQuery
Intro to jQuery
Alan Hecht
?

Recently uploaded (20)

SAP_S4HANA_EWM_Food_Processing_Industry.pptx
SAP_S4HANA_EWM_Food_Processing_Industry.pptx
vemulavenu484
?
Pause Travail 22 Hostiou Girard 12 juin 2025.pdf
Pause Travail 22 Hostiou Girard 12 juin 2025.pdf
Institut de l'Elevage - Idele
?
11th International Conference on Data Mining (DaMi 2025)
11th International Conference on Data Mining (DaMi 2025)
rinzindorjej
?
apidays New York 2025 - Beyond Webhooks: The Future of Scalable API Event Del...
apidays New York 2025 - Beyond Webhooks: The Future of Scalable API Event Del...
apidays
?
Media_Literacy_Index_of_Media_Sector_Employees.pdf
Media_Literacy_Index_of_Media_Sector_Employees.pdf
OlhaTatokhina1
?
apidays Singapore 2025 - Building Finance Innovation Ecosystems by Umang Moon...
apidays Singapore 2025 - Building Finance Innovation Ecosystems by Umang Moon...
apidays
?
What is FinOps as a Service and why is it Trending?
What is FinOps as a Service and why is it Trending?
Amnic
?
Measurecamp Copenhagen - Consent Context
Measurecamp Copenhagen - Consent Context
Human37
?
Managed Cloud services - Opsio Cloud Man
Managed Cloud services - Opsio Cloud Man
Opsio Cloud
?
Verweven van EM Legacy en OTL-data bij AWV
Verweven van EM Legacy en OTL-data bij AWV
jacoba18
?
5. & 9. Packing material and Labelling_AP-60,XP-60.pdf
5. & 9. Packing material and Labelling_AP-60,XP-60.pdf
maricruzduranpaterni
?
SUNSSE Engineering Introduction 2021.pdf
SUNSSE Engineering Introduction 2021.pdf
Ongkino
?
unit- 5 Biostatistics and Research Methodology.pdf
unit- 5 Biostatistics and Research Methodology.pdf
KRUTIKA CHANNE
?
Report_Government Authorities_Index_ENG_FIN.pdf
Report_Government Authorities_Index_ENG_FIN.pdf
OlhaTatokhina1
?
Grote OSM datasets zonder kopzorgen bij Reijers
Grote OSM datasets zonder kopzorgen bij Reijers
jacoba18
?
最新版美国威斯康星大学拉克罗斯分校毕业证(鲍奥–尝毕业证书)原版定制
最新版美国威斯康星大学拉克罗斯分校毕业证(鲍奥–尝毕业证书)原版定制
Taqyea
?
最新版美国亚利桑那大学毕业证(鲍础毕业证书)原版定制
最新版美国亚利桑那大学毕业证(鲍础毕业证书)原版定制
Taqyea
?
apidays New York 2025 - Life is But a (Data) Stream by Sandon Jacobs (Confluent)
apidays New York 2025 - Life is But a (Data) Stream by Sandon Jacobs (Confluent)
apidays
?
Fundamental Analysis for Dummies.pdf somwmdw
Fundamental Analysis for Dummies.pdf somwmdw
ssuserc74044
?
apidays New York 2025 - API Security and Observability at Scale in Kubernetes...
apidays New York 2025 - API Security and Observability at Scale in Kubernetes...
apidays
?
SAP_S4HANA_EWM_Food_Processing_Industry.pptx
SAP_S4HANA_EWM_Food_Processing_Industry.pptx
vemulavenu484
?
11th International Conference on Data Mining (DaMi 2025)
11th International Conference on Data Mining (DaMi 2025)
rinzindorjej
?
apidays New York 2025 - Beyond Webhooks: The Future of Scalable API Event Del...
apidays New York 2025 - Beyond Webhooks: The Future of Scalable API Event Del...
apidays
?
Media_Literacy_Index_of_Media_Sector_Employees.pdf
Media_Literacy_Index_of_Media_Sector_Employees.pdf
OlhaTatokhina1
?
apidays Singapore 2025 - Building Finance Innovation Ecosystems by Umang Moon...
apidays Singapore 2025 - Building Finance Innovation Ecosystems by Umang Moon...
apidays
?
What is FinOps as a Service and why is it Trending?
What is FinOps as a Service and why is it Trending?
Amnic
?
Measurecamp Copenhagen - Consent Context
Measurecamp Copenhagen - Consent Context
Human37
?
Managed Cloud services - Opsio Cloud Man
Managed Cloud services - Opsio Cloud Man
Opsio Cloud
?
Verweven van EM Legacy en OTL-data bij AWV
Verweven van EM Legacy en OTL-data bij AWV
jacoba18
?
5. & 9. Packing material and Labelling_AP-60,XP-60.pdf
5. & 9. Packing material and Labelling_AP-60,XP-60.pdf
maricruzduranpaterni
?
SUNSSE Engineering Introduction 2021.pdf
SUNSSE Engineering Introduction 2021.pdf
Ongkino
?
unit- 5 Biostatistics and Research Methodology.pdf
unit- 5 Biostatistics and Research Methodology.pdf
KRUTIKA CHANNE
?
Report_Government Authorities_Index_ENG_FIN.pdf
Report_Government Authorities_Index_ENG_FIN.pdf
OlhaTatokhina1
?
Grote OSM datasets zonder kopzorgen bij Reijers
Grote OSM datasets zonder kopzorgen bij Reijers
jacoba18
?
最新版美国威斯康星大学拉克罗斯分校毕业证(鲍奥–尝毕业证书)原版定制
最新版美国威斯康星大学拉克罗斯分校毕业证(鲍奥–尝毕业证书)原版定制
Taqyea
?
最新版美国亚利桑那大学毕业证(鲍础毕业证书)原版定制
最新版美国亚利桑那大学毕业证(鲍础毕业证书)原版定制
Taqyea
?
apidays New York 2025 - Life is But a (Data) Stream by Sandon Jacobs (Confluent)
apidays New York 2025 - Life is But a (Data) Stream by Sandon Jacobs (Confluent)
apidays
?
Fundamental Analysis for Dummies.pdf somwmdw
Fundamental Analysis for Dummies.pdf somwmdw
ssuserc74044
?
apidays New York 2025 - API Security and Observability at Scale in Kubernetes...
apidays New York 2025 - API Security and Observability at Scale in Kubernetes...
apidays
?
Ad

wsu-jquery-cheat-sheet.pdf