description text
description text
description text
description text
description text
description text
tags until I get to the <h5>.
There might be 1
tag, there might be 10 of them, but I want to
traverse this structure to add all
tags.
Right now, I'm doing this to select 1 of the
tags:
$('h5').each(function(){
var $this = $(this);
$this
.add($this.next());
});