prepend() - Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
1. prepend( content [, content ] )
// with html string
jQuery('#parent').prepend('<span>child</span>');
// or you can use jQuery object
jQuery('#parent').prepend(...