Guest User

Untitled

a guest
Dec 13th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. moveToEnd(2);
  4.  
  5. });
  6.  
  7. function moveToEnd(id){
  8. var $div = $("#" + id);
  9. var divsList = $("div");
  10.  
  11. $("#" + id).remove();
  12.  
  13. $(divsList[divsList.length-1]).parent().append($div);
  14. }
Add Comment
Please, Sign In to add comment