Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My client would like for me to write a sliver of code, jQuery preferred, that would set ALL the links to the same width of the widest link. Here's the HTML:

<div>
<h1>HEADER</h1>
<p style="text-align: right;" class="floatRight"><a href="#" class="small-button eLength"><span>BUTTON 1</span></a></p>
<p style="text-align: right;" class="floatRight"><a href="#" class="small-button eLength"><span>BUTTON 2</span></a></p>
<p style="text-align: right;" class="floatRight"><a href="#" class="small-button eLength"><span>BUTTON LONGEST</span></a></p>
</div>

The CSS sets all three buttons to a min-width of 180px. I'm looking for this all to hinge on the class: eLength

share|improve this question
5  
What have you tried? – Adrian Carneiro Nov 7 '12 at 17:20
Are the buttons and their labels being created dynamically? If they aren't I personally think adding this kind of overhead is a silly thing to do. – Rick Calder Nov 7 '12 at 17:27
The buttons ARE being created dynamically – Murphy1976 Dec 6 '12 at 14:53

2 Answers

You can get the max width like this:

var widest = Math.max.apply(Math, $('.eLength').map(function() { 
    return $(this).width(); 
}));

And to wrap this in a sliver plugin:

$.fn.widest = function() {
    return this.length ? this.width(Math.max.apply(Math, this.map(function() { 
        return $(this).width();
    }))) : this;
};

$('.eLength').widest();
share|improve this answer
+1 for the jQuery extension version – Adrian Carneiro Nov 7 '12 at 18:05

Using John Resig's Fast JavaScript Max/Min:

Array.max = function(array) {
    return Math.max.apply(Math, array);
};

var widths = new Array();
$('.eLength').each(function(index) {
    widths.push($(this).width());
});

alert("Max Width: " + Array.max(widths));
share|improve this answer
The alert comes up Max Width: -Infinity – Murphy1976 Nov 7 '12 at 17:40
Be careful with that max function, passing anything else than an array with a length will return -Infinity. – David Nov 7 '12 at 18:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.