Skip to content

Instantly share code, notes, and snippets.

@yeco
Created December 12, 2012 07:32
Simple jQuery pseudo-selector that matches only if the element has text in it.
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