Skip to content

Instantly share code, notes, and snippets.

@jessb321
Last active July 15, 2017 23:35
Show Gist options
  • Save jessb321/77637b386617128168ec60a5a420adf4 to your computer and use it in GitHub Desktop.
Save jessb321/77637b386617128168ec60a5a420adf4 to your computer and use it in GitHub Desktop.
$.fn.textWidth = function(){
const text = $(this).html();
const testElem = document.createElement('span');
testElem.style.opacity = 0;
$(testElem).html('<span>'+text+'</span>');
document.body.appendChild(testElem);
$(testElem).remove();
return width;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment