Quote:
Originally Posted by Xallow
I am trying to get a form to do 2 things when submitted using javascript
1: Send me an e-mail
2: Popup a Submitted window
|
Instead of sending by email, can you not process with a script, which will validate the input properly, then redirect to a "submitted" page if all is OK?
In any event, this does what you asked.
Code:
<script type="text/javascript">
function popupsubmit(){
window.open('http://www.pornpartyporn.com/submited.html', 'iframe1', 'height=400,width=400,scrollbars=no');
}
</script>
<form method="post" action="mailto:webmaster@pornpartyporn.com" onsubmit="popupsubmit();">
Form data here
<input type="submit" value="Submit Form by Email">
</form>