October 2009
3 posts
2 tags
stunned. i. am. stunned. every question speaks to us
– YouTube Comment or e. e. cummings?
1 tag
jQuery.getStylesheet
Just a quick brain dump which may be useful to someone searching for the same thing I was. Enjoy.
function getStylesheet(url, callback) {
jQuery.get(url, function(data, status) {
if(status == "success") {
jQuery("head").append(
"<style type=\"text/css\">" +
data + "</style>");
}
callback(data, status);
...