Guest User

Untitled

a guest
Jul 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(".some-selector");
  2.  
  3. display: inline-block;
  4.  
  5. $(".some-selector").detach().manipulate().appendTo(".container");
  6. // or equivalent
  7. $(".container").append($(".some-selector").detach().manipulate());
  8.  
  9. $(".some-selector").after(" ");
  10.  
  11. $('.some-selector').detach().manipulate().map(function() {
  12. return [this, document.createTextNode(' ')];
  13. }).appendTo('.container');
Add Comment
Please, Sign In to add comment