Javascript String width(font)

Description

Javascript String width(font)

String.prototype.width = function(font) {
  var f = font || '12px arial',
      o = $('<div>' + this + '</div>')
            .css({'position': 'absolute', 'float': 'left', 'white-space': 'nowrap', 'visibility': 'hidden', 'font': f})
            .appendTo($('body')),
      w = o.width();/*  w w w  .j  av  a 2 s .  com*/

  o.remove();

  return w;
}



PreviousNext

Related