What are you looking for?
Right now, doing
$('head').append('<link type="text/css" href="mycss.css"
rel="stylesheet" />');
works just fine for me.
If you want to keep a reference to enable/disable it, use:
var stylesheet = $('<link type="text/css" href="mycss.css"
rel="stylesheet" />').appendTo('head');
stylesheet.attr('disabled', true); // disables the sheet
stylesheet.attr('disabled', false); // enables the sheet
Danny Wachsstock
On Oct 2, 10:20 am, jldupont <[EMAIL PROTECTED]> wrote:
> Hi - is there any plans to support the dynamic loading of CSS
> resources ?
>
> Thanks,
> Jean-Lou Dupont.