How can I use jquery to remove a SPECIFIC div that has no children (at least no children that isn\'t whitespace). E.g.
some cont
Here is if empty with children then you can point at children and then remove a parent, this dont look at whitespaces it just remove if empty
so like; if li is empty it removes #removeme
if (!$("#tabs ul li").length) $('#tabs').remove();