I am using the jQuery Form plugin API to submit a form. It is submitting in the background, but how do I show this result (actionpage.php) in a div (with id posthere) as shown below.
<form id="myForm" action="actionpage.php" method="post">
Name: <input type="text" name="name" />
<input type="submit" value="Submit Comment" />
</form>
<script>
$('#myForm').ajaxForm();
</script>
<div id="posthere" ></div>