I have a bunch of elements like:
..
I want to loop through all of them and get the highest
I think you need the second value the splitted ID, and you might want to convert the string to an integer, like this:
var newid = 0;
$(".blah").each(function() {
var id = parseInt( this.id.split('-')[1], 10 );
if( id > newid)
newid = id;
});
I would do:
var max = 0;
$(".blah").each(function(){
num = parseInt(this.id.split("-")[1],10);
if(num > max)
{
max = num;
}
});
Most people would do this way.
You want to use parseInt
so numerical operators apply
var id = parseInt($(this).attr('id').split('-')[1]);
I'd go for this, using .map
, .get
and .sort
:
$('.blah').map(function(){
return parseInt(this.id.split('-')[1], 10);
}).get().sort(function(a, b) {
return b - a;
})[0];