Hello I'm doing this to add a string after a div in an html page with jquery:
<a href="javascript:void(0);" onclick="PrependItemsToList();">Prepend items</a>
<script type="text/javascript">
function PrependItemsToList()
{
$("#content_gallery").prepend($("<li></li>").text("prepend() item"));
}
</script>
Now I need to do it server side, any idea on how to implement it in php? I found phpquery but didn't find good docs about it.