[jQuery] can not append <a> to body in IE

[jQuery] can not append <a> to body in IE


Hi guys, you can see jQuery code below, it works in Firefox and Opera
for me, but does not work in IE6.
$(function() {
    var a = $('<a>').attr('href', 'javascript://').append('test');
    $('body').append(a);
});