i have a contact form in my website which sends email. i want it not to refresh page when submitted but do send email and success message. my form is like
<form method="post" id="contactform" enctype="multipart/form-data">
<input class="contactusfeild" style="width:222px;" name="sendername" type="text" placeholder="Your Name" required>
<input class="contactusfeild" name="senderemail" style="width:222px;" type="email" placeholder="Your Email" required >
<textarea name="sendermessage" class="contactusfeild" type="text" placeholder="Your Message Here" style="width:220px; max-width:220px; height:100px; max-height:100px; padding-top:10px;" required ></textarea>
<input class="button" style="border:none;" type="reset" value="Clear" /><input name="contactcozmuler" class="button" style="border:none; margin " type="submit" id="submit_btn" value="Send" />
</form>