I know it is not. I am looking for a jquery solution which is possible to use in Sharepoint environment.
This is a jquery I used before to move a description above a textbox
<script type="text/javascript" src="Style%20Library/JS/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('td.ms-formbody').each(function(){
var theDescrip = $(this).contents('span.ms-metadata');
// var newValue = $(this).val(theDescrip) + '<br/>';
$(this).prepend(theDescrip);
theDescrip.after("<br/>");
});
});
</script>