Skip to content

Instantly share code, notes, and snippets.

@hazzik
Created May 18, 2013 08:45
Show Gist options
  • Save hazzik/5603764 to your computer and use it in GitHub Desktop.
Save hazzik/5603764 to your computer and use it in GitHub Desktop.
String.prototype.visualLength = (function() {
var that = this,
ruler = document.getElementById('ruler');
if (!ruler) {
ruler = document.createElement('span');
document.body.appendChild(ruler);
}
ruler.style.visibility = 'hidden';
return function () {
ruler.innerHTML = that;
return ruler.offsetWidth;
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment