h1要素から最後のスパンを選択するにはどうすればよいですか?
<h1>
<a href="#">
<span>Stackoverflow</span>
<span>This is the text what I want to hide</span>
<img src="gif.gif">
</a>
</h1>
私が試したことはありますが、うまくいきません:
$("h1").each(function() {
$(this).last("span").hide();
});