<div id="compare">
<table>
<thead></thead>
<tbody>
<tr class="stock4">
<td>
<img src="abc.jpg" alt="">
</td>
<td class="price">
<div>
1000
<div class="variant">
<table>
<thead></thead>
<tbody>
<tr class="stock4">
<td class="price">2000</td>
</tr>
</tbody>
</table>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
var pricediv;
pricediv = $('.price').clone().children('div')[0];
while (pricediv.firstChild.nextSibling) {
pricediv.removeChild(pricediv.firstChild.nextSibling);
}
alert(pricediv.innerHTML);
var pricediv;
pricediv = $('.price').children('div')[0];
text = pricediv.innerHTML;
alert(text.substr(0,text.indexOf('<')));
Open in new window