I have a string that I want to check if it has words longer than or equal to 15 chars. If so, split that word to 5 chars by blank spaces, then return the same string with splitted words.
My code works but the problem is that my string could also contain HTML tags and I would like to not touch them.
function space_that(_e){
var w = [];
var t = $(_e).text();
w = t.split(" ");
for(var s in w)
if(w[s].length >= 15)
w[s] = w[s].substr(0,10) + " ";
$(_e).text(w.join(" "));
return true;
}

