I have this HTML code:
<div>
756
<span></span>
</div>
now using javascript I am trying to retriev the number from the div and increment it by 1. But I can not seem to figure out how to filter the <span> out of my variable and then increment only the number.
Might you guys have any idea on how to achieve this?
Thanks for your tips!

.innerTextand then parseInt (don't forget the radix) – BLSully Sep 19 '12 at 12:50