Jquery
.add()
Create a new jQuery object with elements added to the set of matched elements.
Create a new jQuery object with elements added to the set of matched elements.
.addClass()
Adds the specified class(es) to each element in the set of matched elements.
Adds the specified class(es) to each element in the set of matched elements.
.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
Insert content, specified by the parameter, after each element in the set of matched elements.
.andSelf()
Add the previous set of elements on the stack to the current set.
Add the previous set of elements on the stack to the current set.
.append()
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
.appendTo()
Insert every element in the set of matched elements to the end of the target.
Insert every element in the set of matched elements to the end of the target.
.attr()
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
.before()
Insert content, specified by the parameter, before each element in the set of matched elements.
Insert content, specified by the parameter, before each element in the set of matched elements.
.bind()
Attach a handler to an event for the elements.
Attach a handler to an event for the elements.
callbacks.empty()
Remove all of the callbacks from a list.
Remove all of the callbacks from a list.
callbacks.remove()
Remove a callback or a collection of callbacks from a callback list.
Remove a callback or a collection of callbacks from a callback list.
.children()
Get the children of each element in the set of matched elements, optionally filtered by a selector.
Get the children of each element in the set of matched elements, optionally filtered by a selector.
.clearQueue()
Remove from the queue all items that have not yet been run.
Remove from the queue all items that have not yet been run.
.closest()
For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
.contents()
Get the children of each element in the set of matched elements, including text and comment nodes.
Get the children of each element in the set of matched elements, including text and comment nodes.
.context
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
.css()
Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
.data()
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
deferred.isRejected()
Determine whether a Deferred object has been rejected.
Determine whether a Deferred object has been rejected.
deferred.isResolved()
Determine whether a Deferred object has been resolved.
Determine whether a Deferred object has been resolved.
deferred.then()
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
.delegate()
Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
.dequeue()
Execute the next function on the queue for the matched elements.
Execute the next function on the queue for the matched elements.
.detach()
Remove the set of matched elements from the DOM.
Remove the set of matched elements from the DOM.
.die()
Remove event handlers previously attached using .live() from the elements.
Remove event handlers previously attached using .live() from the elements.
.empty()
Remove all child nodes of the set of matched elements from the DOM.
Remove all child nodes of the set of matched elements from the DOM.
.error()
Bind an event handler to the “error” JavaScript event.
Bind an event handler to the “error” JavaScript event.
event.delegateTarget
The element where the currently-called jQuery event handler was attached.
The element where the currently-called jQuery event handler was attached.
.fadeOut()
Hide the matched elements by fading them to transparent.
Hide the matched elements by fading them to transparent.
.filter()
Reduce the set of matched elements to those that match the selector or pass the function’s test.
Reduce the set of matched elements to those that match the selector or pass the function’s test.
.find()
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
.finish()
Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.
Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.
:first-child Selector
Selects all elements that are the first child of their parent.
Selects all elements that are the first child of their parent.
.height()
Get the current computed height for the first element in the set of matched elements or set the height of every matched element.
Get the current computed height for the first element in the set of matched elements or set the height of every matched element.
.hide()
Hide the matched elements.
Hide the matched elements.
.hover()
Bind one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
Bind one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
.html()
Get the HTML contents of the first element in the set of matched elements or set the HTML contents of every matched element.
Get the HTML contents of the first element in the set of matched elements or set the HTML contents of every matched element.
.innerHeight()
Get the current computed inner height (including padding but not border) for the first element in the set of matched elements or set the inner height of every matched element.
Get the current computed inner height (including padding but not border) for the first element in the set of matched elements or set the inner height of every matched element.
.innerWidth()
Get the current computed inner width (including padding but not border) for the first element in the set of matched elements or set the inner width of every matched element.
Get the current computed inner width (including padding but not border) for the first element in the set of matched elements or set the inner width of every matched element.
.insertAfter()
Insert every element in the set of matched elements after the target.
Insert every element in the set of matched elements after the target.
.insertBefore()
Insert every element in the set of matched elements before the target.
Insert every element in the set of matched elements before the target.
jQuery()
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
Perform an asynchronous HTTP (Ajax) request.
jQuery.boxModel
States if the current page, in the user’s browser, is being rendered using the W3C CSS Box Model. This property was removed in jQuery 1.8. Please try to use feature detection instead.
States if the current page, in the user’s browser, is being rendered using the W3C CSS Box Model. This property was removed in jQuery 1.8. Please try to use feature detection instead.
jQuery.browser
Contains flags for the useragent, read from navigator.userAgent. This property was removed in jQuery 1.9 and is available only through the jQuery.migrate plugin. Please try to use feature detection instead.
Contains flags for the useragent, read from navigator.userAgent. This property was removed in jQuery 1.9 and is available only through the jQuery.migrate plugin. Please try to use feature detection instead.
jQuery.Callbacks()
A multi-purpose callbacks list object that provides a powerful way to manage callback lists.
A multi-purpose callbacks list object that provides a powerful way to manage callback lists.
jQuery.data()
Store arbitrary data associated with the specified element and/or return the value that was set.
Store arbitrary data associated with the specified element and/or return the value that was set.
jQuery.dequeue()
Execute the next function on the queue for the matched element.
Execute the next function on the queue for the matched element.
jQuery.get()
Load data from the server using a HTTP GET request.
Load data from the server using a HTTP GET request.
jQuery.getJSON()
Load JSON-encoded data from the server using a GET HTTP request.
Load JSON-encoded data from the server using a GET HTTP request.
jQuery.grep()
Finds the elements of an array which satisfy a filter function. The original array is not affected.
Finds the elements of an array which satisfy a filter function. The original array is not affected.
jQuery.hasData()
Determine whether an element has any jQuery data associated with it.
Determine whether an element has any jQuery data associated with it.
jQuery.htmlPrefilter()
Modify and filter HTML strings passed through jQuery manipulation methods.
Modify and filter HTML strings passed through jQuery manipulation methods.
jQuery.map()
Translate all items in an array or object to new array of items.
Translate all items in an array or object to new array of items.
jQuery.noConflict()
Relinquish jQuery’s control of the $ variable.
Relinquish jQuery’s control of the $ variable.
jQuery.parseHTML()
Parses a string into an array of DOM nodes.
Parses a string into an array of DOM nodes.
jQuery.post()
Load data from the server using a HTTP POST request.
Load data from the server using a HTTP POST request.
jQuery.queue()
Show or manipulate the queue of functions to be executed on the matched element.
Show or manipulate the queue of functions to be executed on the matched element.
jQuery.removeData()
Remove a previously-stored piece of data.
Remove a previously-stored piece of data.
jQuery.sub()
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
jQuery.support
A collection of properties that represent the presence of different browser features or bugs. Intended for jQuery’s internal use; specific properties may be removed when they are no longer needed internally to improve page startup performance. For your own project’s feature-detection needs, we strongly recommend the use of an external library such as Modernizr instead of dependency on properties in jQuery.support.
A collection of properties that represent the presence of different browser features or bugs. Intended for jQuery’s internal use; specific properties may be removed when they are no longer needed internally to improve page startup performance. For your own project’s feature-detection needs, we strongly recommend the use of an external library such as Modernizr instead of dependency on properties in jQuery.support.
jQuery.trim()
Remove the whitespace from the beginning and end of a string.
Remove the whitespace from the beginning and end of a string.
jQuery.unique()
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
jQuery.uniqueSort()
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
:last-child Selector
Selects all elements that are the last child of their parent.
Selects all elements that are the last child of their parent.
:last-of-type Selector
Selects all elements that are the last among siblings of the same element name.
Selects all elements that are the last among siblings of the same element name.
.live()
Attach an event handler for all elements which match the current selector, now and in the future.
Attach an event handler for all elements which match the current selector, now and in the future.
.load()
Load data from the server and place the returned HTML into the matched element.
Load data from the server and place the returned HTML into the matched element.
.load()
Bind an event handler to the “load” JavaScript event.
Bind an event handler to the “load” JavaScript event.
.not()
Remove elements from the set of matched elements.
Remove elements from the set of matched elements.
.off()
Remove an event handler.
Remove an event handler.
.on()
Attach an event handler function for one or more events to the selected elements.
Attach an event handler function for one or more events to the selected elements.
.outerHeight()
Get the current computed outer height (including padding, border, and optionally margin) for the first element in the set of matched elements or set the outer height of every matched element.
Get the current computed outer height (including padding, border, and optionally margin) for the first element in the set of matched elements or set the outer height of every matched element.
.outerWidth()
Get the current computed outer width (including padding, border, and optionally margin) for the first element in the set of matched elements or set the outer width of every matched element.
Get the current computed outer width (including padding, border, and optionally margin) for the first element in the set of matched elements or set the outer width of every matched element.
.parents()
Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.
Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.
.prepend()
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
.prependTo()
Insert every element in the set of matched elements to the beginning of the target.
Insert every element in the set of matched elements to the beginning of the target.
.promise()
Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished.
Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished.
.prop()
Get the value of a property for the first element in the set of matched elements or set one or more properties for every matched element.
Get the value of a property for the first element in the set of matched elements or set one or more properties for every matched element.
.pushStack()
Add a collection of DOM elements onto the jQuery stack.
Add a collection of DOM elements onto the jQuery stack.
.queue()
Show or manipulate the queue of functions to be executed on the matched elements.
Show or manipulate the queue of functions to be executed on the matched elements.
.ready()
Specify a function to execute when the DOM is fully loaded.
Specify a function to execute when the DOM is fully loaded.
.remove()
Remove the set of matched elements from the DOM.
Remove the set of matched elements from the DOM.
.removeAttr()
Remove an attribute from each element in the set of matched elements.
Remove an attribute from each element in the set of matched elements.
.removeClass()
Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
.removeData()
Remove a previously-stored piece of data.
Remove a previously-stored piece of data.
.removeProp()
Remove a property for the set of matched elements.
Remove a property for the set of matched elements.
.replaceAll()
Replace each target element with the set of matched elements.
Replace each target element with the set of matched elements.
.replaceWith()
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
.selector
A selector representing selector passed to jQuery(), if any, when creating the original set.
A selector representing selector passed to jQuery(), if any, when creating the original set.
.show()
Display the matched elements.
Display the matched elements.
.size()
Return the number of elements in the jQuery object.
Return the number of elements in the jQuery object.
.stop()
Stop the currently-running animation on the matched elements.
Stop the currently-running animation on the matched elements.
.toggle()
Bind two or more handlers to the matched elements, to be executed on alternate clicks.
Bind two or more handlers to the matched elements, to be executed on alternate clicks.
.toggleClass()
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 state argument.
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 state argument.
.unbind()
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
.undelegate()
Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.
Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.
.unload()
Bind an event handler to the “unload” JavaScript event.
Bind an event handler to the “unload” JavaScript event.
.unwrap()
Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.
Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.
.val()
Get the current value of the first element in the set of matched elements or set the value of every matched element.
Get the current value of the first element in the set of matched elements or set the value of every matched element.
.width()
Get the current computed width for the first element in the set of matched elements or set the width of every matched element.
Get the current computed width for the first element in the set of matched elements or set the width of every matched element.
댓글
댓글 쓰기