Hello i need to remove a form tag but non the content:
not remove this only the form tag
$('.element').replaceWith(function() {
return $(this).html(); });
This is wrong....
$form = $('#form');
$form.replaceWith($form.html());
This one is correct...