function submit_ajax () {
var wymieniać = $("#name") .val ();
var email = $("#email") .val ();
var członek = $ ("wkład [name=members]: sprawdzać");
jeżeli (imię == '' || email == '') {
ostrzeżenie ("Zadawalać wchodzić do oba imię i email");
wracać fałszywy;
}
jeżeli ($("#members ").attr ("")) {
$.post ("http://domain.com/capture.php", {email: "" +email+ "", imię: "" +name+ ""},
funkcja (dane) {
//data być the wydajność your_php_page.php po ono biegać
ostrzeżenie ("Tutaj być the dane wracać: " + dane);
//you móc także the dane na the strona zbyt
$("#response") .html (dane);
});
$.post ("http://aweber.com/scripts/addlead.pl", {email: "" +email+ "", imię: "" +name+ ""},
funkcja (dane) {
//data być the wydajność your_php_page.php po ono biegać
//alert ("Tutaj być the dane returned2: " + dane);
//you móc także the dane na the strona zbyt
$("#response") .html (dane);
});
}
}
|