I want to check to see if the first node of a div is number and if it's null I'll display a div or not.
$(".carcount").bind("DOMSubtreeModified",function(){
$(function() {
$(".carcount span").filter(function() {
var carnumber = get(0).firstChild.data;
if ($.isNumeric(carnumber)) {
$('.carcount').css({ 'display': 'none' });
}
else {
$('.carcount').css({ 'display': 'block' });
}
});
});
});