.Each en jQuery


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Si tenemos:
  2. var animales = ['Gato', 'Perro', 'Perico', 'Abeja'];
  3.  
  4. // Podemos usar la función .each() que nos proporciona jQuery.
  5. $.each(animales, function(indice, animal){
  6. // hacer algo con animal
  7. // El código se ejecutará en este bloque
  8. // por cada uno de los animales
  9. // return false sería igual a break
  10. })

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.