Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $(".pregunta-contenedor").each(function(){
  2. let iterador = 1;
  3. let temporal = $(this).find(".pregunta-preguntaInicial");
  4. temporal.each(function(){
  5. temporal.text(iterador + ".- " + temporal.text());
  6. iterador++;
  7. });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement