Guest User

Untitled

a guest
May 20th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.        var fields = new Array(
  2.             $('#username').val(),
  3.             $('#password').val(),
  4.             $('#email').val(),
  5.             $('#firstname').val() + ' ' + $('#lastname').val(),
  6.             $('#age').val(),
  7.             $('#gender').val(),
  8.             $('#country').val()
  9.         );
  10.         var tr = $('#fourth_step tr');
  11.         tr.each(function(){
  12.             //alert( fields[$(this).index()] )
  13.             $(this).children('td:nth-child(2)').html(fields[$(this).index()]);
  14.         });
Add Comment
Please, Sign In to add comment