Привет. Я пытаюсь получить текст из элемента span прямо над ссылкой.
$(this).closest("span").text()
Полный код:
JS
$boxes.find('.portlet-header .portlet-maximize').click(function() {
// returns the rel of the link fine
var widHtml = $(this).attr('rel');
// get text from span above link (not working)
var widTitle = $(this).closest("span").text()
});
HTML
<div class="portlet-header">
<span class="widTitle gmIcon">text I want to get</span>
<a rel="widgets/dashboard/max/goal-mouth" class="portlet-maximize"></a>
</div>