Created
December 12, 2012 07:32
Simple jQuery pseudo-selector that matches only if the element has text in it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.expr[':'].hasText = function(el, i) { | |
if(el.childNodes.length === 1 && el.firstChild.nodeType === 3) { | |
return jQuery.trim(el.innerHTML).length > 0; | |
} | |
return false; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment