So I\'ve seen three ways to add html/DOM elements to a page. I\'m curious what the pros and cons are for each of them.
1 - Traditional JavaScript
Clone existing Content...
var $html = $template.clone();
$html.find(''); ///after change content...
Because of clone content is with 'DOM' properties. Then u can change this tags,properties,value then append it..