vote up 13 vote down star
7

I'd like to use Javascript to calculate the width of a string, is this possibly without having to use a monospace typeface? If it's not built in my only idea is to create a table of widths for each character but this is pretty unreasonable especially supporting unicode and different type sizes (and all browsers for that matter).

Thanks for any ideas!

flag

5 Answers

vote up 20 vote down check

Create a DIV styled with the following styles. In your JavaScript, set the font size and attributes that you are trying to measure, put your string in the DIV, then read the current width and height of the DIV. It will stretch to fit the contents and the size will be within a few pixels of the string rendered size.

HTML:

<div id="Test">
    abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
</div>

CSS:

#Test
{
    position: absolute;
    visibility: hidden;
    height: auto;
    width: auto;
}

JavaScript (fragment):

var test = document.getElementById("Test");
test.style.fontSize = fontSize;
var height = (test.clientHeight + 1) + "px";
var width = (test.clientWidth + 1) + "px";
link|flag
it was quite the race ;) – mattlant Sep 22 '08 at 23:43
Yep. I had to go pull an old JS file out of SVN to get my sample... – CMPalmer Sep 22 '08 at 23:55
The only thing I'd add is that this may give the wrong dimensions depending on which styles are used. Remember you may have styles like p { letter-spacing: 0.1em; } that a DIV element would not reflect. You must ensure that the styles in place are appropriate for where you will use the text. – Jim Sep 23 '08 at 0:26
Ditto Jim's comment - double-check to make sure the container, div in this case, does not have any other styles applied to it via css selection rules that you may not be cognizant of at the time. Strip all relevant styles from the container before applying the ones you care about before measuring. – Jason Bunting Sep 23 '08 at 0:33
You should also put in white-space:nowrap if you think the text will exceed the browser width. – Herb Caudill Sep 23 '08 at 1:41
vote up 1 vote down

This is just a guess(I am not very proficient with css and such, sorry), but could you put text in an element that grows with the text, and then measure that element?

link|flag
vote up 2 vote down

Text

<script>
var textWidth = document.getElementById("text").offsetWidth;
</script>

This should work as long as the <span> tag has no other styles applied to it. offsetWidth will include the width of any borders, horizontal padding, vertical scrollbar width, etc.

link|flag
vote up 2 vote down

The ExtJS javascript library has a great class called Ext.util.TextMetrics that "provides precise pixel measurements for blocks of text so that you can determine exactly how high and wide, in pixels, a given block of text will be". You can either use it directly or view its source to code to see how this is done.

http://extjs.com/deploy/dev/docs/?class=Ext.util.TextMetrics

link|flag
vote up 0 vote down

Awesome! Thank you!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.