Let's say I have a bunch of <span> elements with different text content.
How I can I get the widest <span>?
jQuery is fine. I only care about identifying the span, not the value of the width itself.
A similar question is here. But they only get the value of the width.
Here's how I'd start:
$('span').each(function(id, value){
if ($(this).width() > w) {
largestSpan = id;
}
});