Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Include CSS Stylesheet by DOM (See related posts)


function includeCSS(p_file) {
	var v_css  = document.createElement('link');
	v_css.rel = 'stylesheet'
	v_css.type = 'text/css';
	v_css.href = p_file;
	document.getElementsByTagName('head')[0].appendChild(v_css);
}



Source: Document Object Model (DOM) Level 1 Specification


You need to create an account or log in to post comments to this site.


Click here to browse all 4857 code snippets

Related Posts