Sprawdź puste elementy - CSS-Tricks

Anonim

Zrób coś dla każdego znalezionego pustego elementu:

$('*').each(function() ( if ($(this).text() == "") ( //Do Something ) ));

TRUE lub FALSE, jeśli element jest pusty:

var emptyTest = $('#myDiv').is(':empty');