Given the following HTML:
<div class="parent">
<span class="child">10</span>
</div>
<div class="parent">
<span class="child">20</span>
</div>
I want to filter and hide parent div based on it's span value (child value), so have thought of doing something like:
<script>
$('span.child').filter(function(index) {
return ($(this).text() < '15');
}).$(this).parent().hide();
</script>
No success... I am not hiding Parent div based on Span Value..
Anyone can help me ?
Greatly appreciated.