Add to: http://api.jquery.com/category/manipulation/dom-insertion-around/ http://api.jquery.com/category/manipulation/dom-insertion-inside/ http://api.jquery.com/category/manipulation/dom-insertion-outside/ http://api.jquery.com/category/manipulation/dom-replacement/ Support for oswst classes. Example: ``` js $('body').append(div); // <div></div> ``` But now it is necessary to pre converted to a string: ``` js $('body').append(div + ''); // <div></div> ```
Add to:
http://api.jquery.com/category/manipulation/dom-insertion-around/
http://api.jquery.com/category/manipulation/dom-insertion-inside/
http://api.jquery.com/category/manipulation/dom-insertion-outside/
http://api.jquery.com/category/manipulation/dom-replacement/
Support for oswst classes.
Example:
But now it is necessary to pre converted to a string: