Submit form without page reloading

Posted by Camran on Stack Overflow See other posts from Stack Overflow or by Camran
Published on 2010-05-19T13:49:23Z Indexed on 2010/05/19 14:00 UTC
Read the original article Hit count: 127

Filed under:
|
|
|

I have a classifieds website, and on the page where ads are showed, I am creating a "Send a tip to a friend" form...

So anybody who wants can send a tip of the ad to some friends email-adress.

I am guessing the form must be submitted to a php page right?

<form name='tip' method='post' action='tip.php'>
Tip somebody: <input name="tip_email" type="text" size="30" onfocus="tip_div(1);" onblur="tip_div(2);"/>
 <input type="submit" value="Skicka Tips"/>
 <input type="hidden" name="ad_id" />
 </form>

When submitting the form, the page gets reloaded... I don't want that...

Is there any way to make it not reload and still send the mail? Preferrably without ajax or jquery...

Thanks

© Stack Overflow or respective owner

Related posts about php

Related posts about JavaScript