After submitting, all fields in the form are cleared except TEXTAREA. I am using summernote for textarea. (using download)
<script type='text/javascript'>//<![CDATA[ $(function(){ $('#description').summernote({height: 500}); });//]]> </script>
#description is an identifier for a text field.
reset done as below
<script> $('#submit-box')[0].reset(); </script>
#submit-box is the form id
source share