How can I add multiple paragraph tag, newly tag on top within div container.
An example for non jQuery-users:
document.getElementById('pcontainer').innerHTML = 'new paragraph' + document.getElementById('pcontainer').innerHTML;
new paragraph
maybe not as short and nice though :)