[jQuery] wow getScript full url and IE

[jQuery] wow getScript full url and IE


WOWWOWOW
I never notice that $.getScript or getCSS
jQuery.getCSS = function( url, media, rel, title ) {
jQuery( document.createElement('link') ).attr({
href: url,
media: media || 'screen',
type: 'text/css',
title: title || '',
rel: rel || 'stylesheet'
}).appendTo('head');
};
dosnt work without a full url!!
In my localhost tests i put the localpath and work!
Iam right?