Manipulation: Support $el.html(selfRemovingScript) (#5378)
[jquery.git] / src / selector / testContext.js
blobcb37629f5cc0d5efb6074fb380ca0a0db4b3622c
1 /**
2  * Checks a node for validity as a jQuery selector context
3  * @param {Element|Object=} context
4  * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
5  */
6 export function testContext( context ) {
7         return context && typeof context.getElementsByTagName !== "undefined" && context;