DZone 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

Benoit has posted 48 posts at DZone. View Full User Profile

Include CSS Stylesheet By DOM

09.18.2007
| 10538 views |
  • submit to reddit
        

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);
}


<a href="http://www.ab-d.fr/">Source: Document Object Model (DOM) Level 1 Specification</a>