jQuery:$("<link>").attr({ rel: "stylesheet", type: "text/css",href: "site.css"}).appendTo("head");
javascript:function addCSS() {
var link = document.createElement('link');
link.type = 'text/css';
link.rel = 'stylesheet';
link.href = '/Content/Site.css';
document.getElementsByTagName("head")[0].appendChild(link);
}