Skip to content

Instantly share code, notes, and snippets.

@dhavalwd
Created October 24, 2017 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhavalwd/a3702d00631dfe469666c71db0857c53 to your computer and use it in GitHub Desktop.
Save dhavalwd/a3702d00631dfe469666c71db0857c53 to your computer and use it in GitHub Desktop.
textWidth function - calculate text width
// Copied from here: https://stackoverflow.com/a/2771544/1909380
// jQuery function to calculate text width
$.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;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment