function appendScript(filepath,id) { if ($(' script[src="' + filepath + '"]').length > 0){ return; } var ele = document.createElement('script'); ele.setAttribute("type", "text/javascript"); ele.setAttribute("id", id); ele.setAttribute("src", filepath); vvDebugg('--- Append script -> '+filepath+' id->'+id); $('head').append(ele); } function appendStyle(filepath) { if ($('head link[href="' + filepath + '"]').length > 0){ return; } var ele = document.createElement('link'); ele.setAttribute("type", "text/css"); ele.setAttribute("rel", "Stylesheet"); ele.setAttribute("href", filepath); $('head').append(ele); }