[wd_asp elements=’search’ ratio=’100%’ id=1]

Ajax – Send Email by Button – No Refresh

10th November 2013

Jquery - Forms-Posting

jquery icon

// submits page with post silently with response needs 2nd page to work.

var dog = $(this).attr("name"); // this can be anything
// alert(dog);

$.ajax({
type: 'POST',
url: 'sendemail.php',
data: ({
subject: dog,
}),
success: function(msg){
alert('Email Sent' + msg);
}
});
});
});

and the 2nd page (sendemail.php)

I will email you about this soon.