Pregunta

I've a simple each loop and I want count loops of this while,and find The final number then save counter variable and use in my codes, how can do posible...??!

var counter = 0;

$.each(data, function( key, value) {
  counter++;
     if(counter == /*The final number*/)
     {
        //Do Some Codes
     }


})
¿Fue útil?

Solución

You can count loop like this

.each(function (i) { }

here i will give you counter value

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top