When I add event handler to a some elements using query:
$('div').mouseover(function () {
});
Iinside function I have an element for which we add event function ($(this)).
how can I check inside this function next:
- Have this “DIV”($(this)) child elements
“DIV”? - Have this “DIV”($(this)) child
element “DIV” whith height more than
300?
Update:
children[i].css('height')can also be used.