3 lines
105 B
JavaScript
3 lines
105 B
JavaScript
|
$('.stats').each(function(){
|
||
|
console.log(typeof this.id =='undefined' ? 'sorry, no id ' : this.id);
|
||
|
});
|