1
2
3
4
5
6
7
8
9
10
11
|
jQuery.loadStylesheet = function(href, type) {
type = type || "text/css";
$(document).ready(function() {
if (document.createStylesheet) { document.createStyleSheet(href);
} else {
$("<link rel='stylesheet type='" + type + "' href='" + href + "' />")
.appendTo("head");
}
});
}
|