Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <input type="radio" id="name" />
  2. <input type="radio" id="name" />
  3. <input type="radio" id="name" />
  4. <input type="radio" id="last" />
  5. <input type="radio" id="last" />
  6.  
  7. <input type="radio" id="name1" />
  8. <input type="radio" id="name2" />
  9. <input type="radio" id="name3" />
  10. <input type="radio" id="last1" />
  11. <input type="radio" id="last2" />
  12.  
  13. $('[id]').each(function(){
  14. var ids = $('[id="'+this.id+'"]');
  15. if(ids.length>1 && ids[0]==this)
  16. $(this).attr('id', $(this).attr('id') + i);
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement