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.

Consider the following HTML:

<div class="a" x="6"></div>
<div class="a" x="9"></div>
<div class="a" x="2"></div>
...
<div class="a" x="8"></div>

How would you find the maximal x value of all .a elements ?

Assume that all x values are positive integers.

share|improve this question

4 Answers

up vote 3 down vote accepted

Just loop over them:

var maximum = null;

$('.a').each(function() {
  var value = parseFloat($(this).attr('x'));
  maximum = (value > maximum) ? value : maximum;
});
share|improve this answer
2  
Nicely done, I would have answered almost the same. I would have added a var for parseInt($(this).attr('x')). – Vlad Nicula Sep 23 '11 at 5:29
Since you gave my answer a what if - what if the numbers aren't all integers? – nnnnnn Sep 23 '11 at 5:35
Ohoho :O Thanks, I'll add it in. – Blender Sep 23 '11 at 5:36
A radix argument to parseInt would be nice if we're being paranoid (which is a good plan since they really are out to get us). – mu is too short Sep 23 '11 at 5:38
@muistooshort: THEY CAN'T GET ME NOW! – Blender Sep 23 '11 at 5:39
show 2 more comments

I got another version:

var numbers = $(".a").map(function(){
    return parseFloat(this.getAttribute('x')) || -Infinity;
}).toArray();

$("#max").html(Math.max.apply(Math, numbers));

This uses the map function to extract the values of the x-Attributes, converts the object into an array and provides the array elements as function parameters to Math.max

The Math.max trick was stolen from http://ejohn.org/blog/fast-javascript-maxmin/

UPDATE

add "|| -Infinity" to process the case correctly, when no attribute is present. See fiddle of @kubedan

share|improve this answer
It doesn't work if attribute x missing. jsfiddle.net/rSuuP/1 – kubedan Dec 13 '12 at 8:03
Updated your fiddle and my answer: jsfiddle.net/thomas_peklak/rSuuP/2 – topek Dec 14 '12 at 21:48
var max = null;

$('.a').each(function() {
  var x = +($(this).attr('x'));
  if (max === null || x > max)
    max = x;
}

alert(max === null ? "No matching elements found" : "The maximum is " + max);

Note the unary + operator to convert the attribute to a number. You may want to add some error checking to ensure it actually is a number - and that the attribute exists at all. You could change the selector to only select elements with the class and the attribute: $('.a[x]').

share|improve this answer
1  
What if max(x) is less than 0? – Blender Sep 23 '11 at 5:24
"Don't bother me with trifles." (OK, fine, answer updated.) – nnnnnn Sep 23 '11 at 5:34
var max =0;
$('.a').each(function(){

    if(parseFloat($(this).attr('x'))>max)
    {
         max = parseFloat($(this).attr('x')) ;
    }
});

alert(max);
share|improve this answer
But this makes max a string. Make it an integer or a float. – Blender Sep 23 '11 at 5:39
i edited it.... :) – Kanishka Panamaldeniya Sep 23 '11 at 5:42

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.