All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.css.hiddenVisibleSelectors.js Maven / Gradle / Ivy

The newest version!
define( [
	"../core",
	"../selector"
], function( jQuery ) {

"use strict";

jQuery.expr.pseudos.hidden = function( elem ) {
	return !jQuery.expr.pseudos.visible( elem );
};
jQuery.expr.pseudos.visible = function( elem ) {
	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
};

} );




© 2015 - 2024 Weber Informatics LLC | Privacy Policy