forked from UllaSainio/mensawww
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skripteja2.js
42 lines (38 loc) · 928 Bytes
/
skripteja2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// <!--
$(function () {
//QR-koodi:
$("#dialog").dialog({ autoOpen: false });
//Kartta resize:
$("#mapContainer").resizable({
helper: "ui-resizable-helper",
handles: 's, w, sw',
minHeight: 345,
minWidth: 235,
knobHandles: true,
});
//Posti-lahetys
$("#wish").submit(function(e){
e.preventDefault();
$serdata = $(this).serialize();
//alert($serdata);
$.ajax({
cache: false,
type: 'POST',
url: 'testikalenteribl.php',
data: $serdata,
success: function(data){
//alert(data);
if(data=="safty-fail"){
alert("Vastasit turvakysymykseen väärin.");
}else{
alert("Palaute lähetetty. Pyrimme vastaamaan toiveeseesi.");
$("#wish").closest('form').find("input[type=text], textarea").val("");
}
},
error:function(xhr){
alert("Lähetys epäonnistui. " + xhr.statusText);
}
});
});
});
// -->