trying to get the element name using jquey, however it is not fetching the name from span tag. i am trying to go into the class id of span, but still can't fetch the name 'Special Offer'.
jQuery('ul.tools_list > li > a').click(function(){
var _clickHref = jQuery(this).attr('href');
var _linkName = jQuery(this).getElement('span.tool_list_text');
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'side_menu_click',
'carouselHref' : _clickHref,
'menuName' : _linkName
});
});