Skip to content

Instantly share code, notes, and snippets.

@birkof
Created February 16, 2014 23:26
Show Gist options
  • Save birkof/9042142 to your computer and use it in GitHub Desktop.
Save birkof/9042142 to your computer and use it in GitHub Desktop.
// Addition to jQuery to get the inner text width
$.fn.textWidth = function(){
var text = $(this).html();
$(this).html('<span>'+text+'</span>');
var width = $(this).find('span:first').width();
$(this).html(text);
return width;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment