Guest User

Untitled

a guest
Aug 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. /**
  2. * Project funkcija - za dodavanje foundera kompanije.
  3. * @returnd void
  4. */
  5. window.table_rows = 1;
  6. function dodaj_body_members(){
  7. window.table_rows = window.table_rows+1;
  8. if(window.table_rows>10){ return false; }
  9.  
  10. $('div.field_drzac:first').clone().attr('id',"set_polja_" + window.table_rows).appendTo("#wraper_members");
  11. html_novih_polja = $("#set_polja_" + window.table_rows).html();
  12.  
  13. html_novih_polja = html_novih_polja.replace("<?php echo $lang ['bo_reg']['member'] ?> 1.","<?php echo $lang ['bo_reg']['member'] ?> " + window.table_rows + ".");
  14. html_novih_polja = html_novih_polja.replace("fullname1","fullname"+window.table_rows);
  15. html_novih_polja = html_novih_polja.replace("address1","address"+window.table_rows);
  16. html_novih_polja = html_novih_polja.replace("position1","position"+window.table_rows);
  17.  
  18.  
  19. $("#set_polja_" + window.table_rows).html(html_novih_polja);
  20.  
  21.  
  22. }
Add Comment
Please, Sign In to add comment