Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to calculate text width using jQuery. I'm not sure what, but I am definitely doing something wrong.

So, here is the code:

var c = $('.calltoaction');

var cTxt = c.text();

var cWidth =  cTxt.outerWidth();

c.css('width' , cWidth);

Thank you for your help in advance!

share|improve this question
So, in what way is that code not working? What does it need to do differently? – Sixten Otto Oct 17 '09 at 16:28

10 Answers

up vote 62 down vote accepted

This worked better for me:

$.fn.textWidth = function(){
  var html_org = $(this).html();
  var html_calc = '<span>' + html_org + '</span>';
  $(this).html(html_calc);
  var width = $(this).find('span:first').width();
  $(this).html(html_org);
  return width;
};
share|improve this answer
4  
+1 - this truly measures the text, not just the containing block element like brainreavis' solution. – Ben Mar 23 '11 at 16:44
Slick. +1. It looks like you are missing a semi colon on the third line after '</span>', though it doesn't seem to make a difference (worked with or without it on FF9). – shmeeps Jan 12 '12 at 18:33
3  
Be careful with this though... this method will unbind any events on child elements. – brianreavis Feb 3 '12 at 21:05
Missing semicolon added :) – Rune Kaagaard Feb 8 '12 at 9:11
Nico's solution is way better and more elegant than mine. It also keeps any bound events as they were, which is a pretty nice feature :) – Rune Kaagaard Apr 25 at 17:51

jQuery's width functions can be a bit shady when trying to determine the text width due to inconsistent box models. The sure way would be to inject div inside your element to determine the actual text width:

$.fn.textWidth = function(){
  var sensor = $('<div />').css({margin: 0, padding: 0});
  $(this).append(sensor);
  var width = sensor.width();
  sensor.remove();
  return width;
};

To use this mini plugin, simply:

$('.calltoaction').textWidth();
share|improve this answer
1  
Wouldn't this give you the block width rather than the text? – Josh Rickard Jun 12 '10 at 16:59
-1 This does indeed seem to measure the width of the box rather than the text width. – Nathan Arthur Oct 31 '11 at 21:43
Wouldn't simply using a span instead of a div fix the width problem? If so, then this function is a bit better than the accepted answer. – Josh Apr 18 at 19:56

the thing, you are doing wrong, that you are calling a method on cTxt, which is a simple string and not a jQuery object. cTxt is really the contained text.

share|improve this answer
Right. Thanks a lot! – Dom Oct 17 '09 at 17:03

I found this solution works well and it inherits the origin font before sizing:

$.fn.textWidth = function(text){
  var org = $(this)
  var html = $('<span style="postion:absolute;width:auto;left:-9999px">' + (text || org.html()) + '</span>');
  if (!text) {
    html.css("font-family", org.css("font-family"));
    html.css("font-size", org.css("font-size"));
  }
  $('body').append(html);
  var width = html.width();
  html.remove();
  return width;
}
share|improve this answer
I ended up using this, but added org.css("font-weight"). Also, I would say that the if(!text) part is unintuitive. If I use e.g. jQuery("#someContainer").textWidth("Lorem ipsum") I would want to know the text width of "Lorem ipsum" when applied in that particular container. – Sleavely Jun 20 '12 at 13:49

If your trying to do this with text in a select box or if those two arent working try this one instead:

$.fn.textWidth = function(){
 var calc = '<span style="display:none">' + $(this).text() + '</span>';
 $('body').append(calc);
 var width = $('body').find('span:last').width();
 $('body').find('span:last').remove();
 return width;
};

or

function textWidth(text){
 var calc = '<span style="display:none">' + text + '</span>';
 $('body').append(calc);
 var width = $('body').find('span:last').width();
 $('body').find('span:last').remove();
 return width;
};

if you want to grab the text first

share|improve this answer

Neither Rune's nor Brain's was working for me in case when the element that was holding the text had fixed width. I did something similar to Okamera. It uses less selectors.

$.fn.textWidth = function(){
      var html_calc = $('<span>' + $(this).html() + '</span>');
      html_calc.css('font-size',$(this).css('font-size')).hide();
      html_calc.prependTo('body');
      var width = html_calc.width();
      html_calc.remove();
      return width;
    }
share|improve this answer

My solution

$.fn.textWidth = function(){
    var self = $(this),
        children = self.children(),
        calculator = $('<span style="display: inline-block;">'),
        width;

    children.wrap(calculator);
    width = children.parent().width(); // parent = the calculator wrapper
    children.unwrap();
    return width;
};

Basically an improvement over Rune's, that doesn't use .html so lightly

share|improve this answer
1  
This should be the accepted answer, not mine. – Rune Kaagaard Apr 25 at 18:01

Here's a function that's better than others posted because

  1. it's shorter
  2. it works when passing an <input>, <span>, or "string".
  3. it's faster for frequent uses because it reuses an existing DOM element.

Demo: http://jsfiddle.net/philfreo/MqM76/

// Calculate width of text from DOM element or string. By Phil Freo <http://philfreo.com>
$.fn.textWidth = function(text, font) {
    if (!$.fn.textWidth.fakeEl) $.fn.textWidth.fakeEl = $('<span>').hide().appendTo(document.body);
    $.fn.textWidth.fakeEl.html(text || this.val() || this.text()).css('font', font || this.css('font'));
    return $.fn.textWidth.fakeEl.width();
};
share|improve this answer
var calc = '<span style="display:none; margin:0 0 0 -999px">' + $('.move').text() + '</span>';
share|improve this answer

i think you should use $('.calltoaction').val;

also, i would be using id (#) instead of a class for that.. if u have more than one of such classes which how would it handle it?

share|improve this answer
Yes, there is more then one in document. Why would you suggest id? – Dom Oct 17 '09 at 16:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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