Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <div id=''>Sample text</div>
  2.  
  3. $(".vDropbtn").attr("id", "newId");
  4.  
  5. $(".vDropbtn").promise().done( function(){
  6. myFunction(); // not working
  7. } );
  8.  
  9. function myFunction(){
  10. var id = $(".vDropbtn").attr("id");
  11. alert(id); // alerts previous id
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement