Try jQuery's prepend.
http://api.jquery.com/prepend/
$('body').prepend('sdsdsdsdsd');
Hmm...You want to grab the P element, right?
#('body > p:first').before("sdsdsdsdsd');
Reference URL: http://api.jquery.com/before/
© 2024 OneMinuteCode. All rights reserved.