Hi,
With Jcomments, comments and form are loaded "After Content".
Considerating the website template, that mean here:
<jdoc:include type="component" />
So, i would load it into a module position, for the exemple , in my website template, here:
<div id="undercomponent_div" ><jdoc:include type="modules" name="undercomponent" /></div>
To fix it with JavaScript (I'm a Firebug user), I can do this (it works) :
<script type="text/javascript" >
document.getElementById('undercomponent_div').appendChild(document.getElementById('jc'));
</script>
"undercomponent_div" is my module container.
"jc" is the Jcomments container.But, it's a wrong way !

How can I do this ?
Thanks.