FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

jQuery context Property

jQuery Properties jQuery Properties

Example

Determine the context:

$("div").append("<p>" + $("div").context + "</p>")
.append("<p>" + $("div",document.body).context.nodeName + "</p>");
Try it Yourself »

Definition and Usage

The context property was deprecated in jQuery version 1.10.

The context property contains the original context passed to jQuery, which could be a DOM node context, or, if no node is passed, the document context.


Syntax

context

jQuery Properties jQuery Properties