I'm trying to subtract 1 (one) from a value with jQuery. I've managed to do so like this:
$('.notis').text(parseInt($(".notis").text()) - 1);
Problem is that the <a> this is subtracting from looks like this:
<a href="#" class="notis"><img src="/images/icons/picture.png">3</a>
So the jquery above will subtract 1 (one) from the value, but also remove the image! How can I do this and keep the image html?