prepend change to prependTo

prepend change to prependTo

$('#dictionary').prepend(data);
works fine

Why
$(data).prependTo('#dictionary')
is not working?

I want
$(data).hide().prependTo('#dictionary').fadeIn();