$(".gkTabsItem.active p").each(function(){ var text = $(this).html(); if(text.length> 30+text.search(/>/)) { $(this).html(text.substr(0,30+text.search(/>/))+"..."); } });