jQuery context Property
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