Skip to content

Instantly share code, notes, and snippets.

@GeoffCox
Created August 25, 2015 17:22
Show Gist options
  • Save GeoffCox/ccaecbd839fe2ad56a37 to your computer and use it in GitHub Desktop.
Save GeoffCox/ccaecbd839fe2ad56a37 to your computer and use it in GitHub Desktop.
Measure text in HTML
var measureHtmlText = function (text, className) {
var ruler = $('<span>');
ruler.addClass(className)
.css('display', 'none')
.css('white-space', 'nowrap')
.appendTo($('body'));
ruler.text(text);
var width = ruler.width();
var height = ruler.height();
ruler.remove();
return { width: width, height: height };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment