0
some submits redirect you to a page that thanks you. but, how to create a directive to remain on the page w/ popup thanks? js?
Buttons & Forms
4 Réponses
+ 1
Return false on your form from onsubmit event
<form onsubmit="return submitted()">
</form>
function submitted() {
alert("Thanks");
return false;
}
+ 1
The exemple given by Toni Isotalo has to be competed by an Ajax function to send the data to your server. Then, your server sends the email.
0
i currently have a button that will open up the results on the form in an email application. i am wanting the information to be compiled and perhaps sent automatically.
0
thanks to you both. i will test this out.