I need to grab the text value of a child div.
<div id='first'>
<div id='first_child'>A</div>
<div id='second_child'>B</div>
<div id='third_child'>C</div>
</div>
I am trying to grab the value B. I am currently trying this but it is not working,
var text_val = $('#first').next('#second_child').val();