Show Menu
Cheatography

jQuery Quick Reference Cheat Sheet (DRAFT) by

A quick overview of basic jQuery concepts

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Selectors

Basic
*
All elements
#id
Specific id
.class
Specific class
.class­,.class
Specific classes
element
Specific element type
Filter
:first
The first of a specified element type
:last
The last of a specified element type
:even
All even elements of a specified type
:odd
All odd elements of a specified type
:eq(index)
Element at a specific index
 

Stuff to add

etc.
 

MORE STUFF

etc.