I tried to append <link> tag to <head> tag. For this, I wrote
$("<link/>",{...}).appendTo("head"); // jquery 1.4 style
or
$("head").append("<link href.... />"); // jquery 1.3.2 style
.Both work nice on Firefox, Chrome, Safari, Opera but IE... In case of IE, it works with jQuery1.3.2, but never do anything with 1.4. Inspecting DOM, there's surely appended <link> tag to <head>.

