Guest User

Untitled

a guest
Jul 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <div class="xtra" id="id1"><a href="#"><span>Next</span></a></div>
  2.  
  3. $j("#id1").attr('id', 'id2');
  4.  
  5. $j("#id1").live('click',function(){
  6. $(this).attr('id', 'id2'); //use this one
  7. this.id = 'id2'; //or this one <-- they both do the same thing
  8. })
Add Comment
Please, Sign In to add comment