I’d like to truncate a dynamically loaded string using straight JavaScript. It’s a url, so there are no spaces, and I obviously don’t care about word boundaries, just characters.
Here’s what I got:
var pathname = document.referrer; //wont work if accessing file:// paths
document.getElementById("foo").innerHTML = "<a href='" + pathname +"'>" + pathname +"</a>"
Use the substring method:
So in your case: