jquery append to front/top of list
some content in the div and need to append some data at the top of the previous content inside that div by moving the remaining content down after a jquery function call.
Use the prepend command: http://api.jquery.com/prepend/
$("#mydiv").prepend(Data);
That should do the trick
