Lines Matching refs:el
933 var el = document.createElement( "fieldset" );
936 return !!fn( el );
942 if ( el.parentNode ) {
943 el.parentNode.removeChild( el );
947 el = null;
1167 support.scope = assert( function( el ) { argument
1168 docElem.appendChild( el ).appendChild( document.createElement( "div" ) );
1169 return typeof el.querySelectorAll !== "undefined" &&
1170 !el.querySelectorAll( ":scope fieldset div" ).length;
1179 support.attributes = assert( function( el ) { argument
1180 el.className = "i";
1181 return !el.getAttribute( "className" );
1188 support.getElementsByTagName = assert( function( el ) { argument
1189 el.appendChild( document.createComment( "" ) );
1190 return !el.getElementsByTagName( "*" ).length;
1200 support.getById = assert( function( el ) { argument
1201 docElem.appendChild( el ).id = expando;
1319 assert( function( el ) { argument
1328 docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
1336 if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) {
1342 if ( !el.querySelectorAll( "[selected]" ).length ) {
1347 if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
1358 el.appendChild( input );
1359 if ( !el.querySelectorAll( "[name='']" ).length ) {
1367 if ( !el.querySelectorAll( ":checked" ).length ) {
1374 if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
1380 el.querySelectorAll( "\\\f" );
1384 assert( function( el ) { argument
1385 el.innerHTML = "<a href='' disabled='disabled'></a>" +
1392 el.appendChild( input ).setAttribute( "name", "D" );
1396 if ( el.querySelectorAll( "[name=d]" ).length ) {
1402 if ( el.querySelectorAll( ":enabled" ).length !== 2 ) {
1408 docElem.appendChild( el ).disabled = true;
1409 if ( el.querySelectorAll( ":disabled" ).length !== 2 ) {
1415 el.querySelectorAll( "*,:x" );
1426 assert( function( el ) { argument
1430 support.disconnectedMatch = matches.call( el, "*" );
1434 matches.call( el, "[s!='']:x" );
2922 support.sortDetached = assert( function( el ) { argument
2925 return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1;
2931 if ( !assert( function( el ) { argument
2932 el.innerHTML = "<a href='#'></a>";
2933 return el.firstChild.getAttribute( "href" ) === "#";
2944 if ( !support.attributes || !assert( function( el ) { argument
2945 el.innerHTML = "<input/>";
2946 el.firstChild.setAttribute( "value", "" );
2947 return el.firstChild.getAttribute( "value" ) === "";
2958 if ( !assert( function( el ) { argument
2959 return el.getAttribute( "disabled" ) == null;
4717 var isHiddenWithinTree = function( elem, el ) { argument
4721 elem = el || elem;
5554 var el = this || data;
5557 if ( rcheckableType.test( el.type ) &&
5558 el.click && nodeName( el, "input" ) ) {
5561 leverageNative( el, "click", returnTrue );
5571 var el = this || data;
5574 if ( rcheckableType.test( el.type ) &&
5575 el.click && nodeName( el, "input" ) ) {
5577 leverageNative( el, "click" );
5612 function leverageNative( el, type, expectSync ) { argument
5616 if ( dataPriv.get( el, type ) === undefined ) {
5617 jQuery.event.add( el, type, returnTrue );
5623 dataPriv.set( el, type, false );
5624 jQuery.event.add( el, type, {