Formulier + data verzenden
Is het mogelijk om met javascript een contactforumuier te verzenden?
Ik wil namelijk een contact formulier maken waar word gecontroleerd op verplichte velden.
Als dit gecontroleerd is de data verzenden en een alert terug geven op de pagina.
De javascript code op controle heb ik zo gemaakt:
Code (php)
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
43
44
45
46
47
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
43
44
45
46
47
(function() {
// Create input element for testing
var inputs = document.createElement('input');
// Create the supports object
var supports = {};
supports.autofocus = 'autofocus' in inputs;
supports.required = 'required' in inputs;
supports.placeholder = 'placeholder' in inputs;
// Fallback for autofocus attribute
if(!supports.autofocus) {
}
// Fallback for required attribute
if(!supports.required) {
}
// Fallback for placeholder attribute
if(!supports.placeholder) {
}
// Change text inside send button on submit
var send = document.getElementById('contact-submit');
if(send) {
send.onclick = function () {
this.innerHTML = 'Vraag word verzonden';
}
}
})();
// Create input element for testing
var inputs = document.createElement('input');
// Create the supports object
var supports = {};
supports.autofocus = 'autofocus' in inputs;
supports.required = 'required' in inputs;
supports.placeholder = 'placeholder' in inputs;
// Fallback for autofocus attribute
if(!supports.autofocus) {
}
// Fallback for required attribute
if(!supports.required) {
}
// Fallback for placeholder attribute
if(!supports.placeholder) {
}
// Change text inside send button on submit
var send = document.getElementById('contact-submit');
if(send) {
send.onclick = function () {
this.innerHTML = 'Vraag word verzonden';
}
}
})();
Wat moet ik nog allemaal programmeren voor wat ik zou willen?
Gr. Jop
met AJAX de boel versturen via POST.
En hoe kan ik een alart programeren ?
Gr. Jop
Is het wel mogelijk om een ajax i.p.v. php met javascript of jquery te versturen?
>> Is het mogelijk om met javascript een contactforumuier te verzenden?
Zo'n ding heet een contactformulier.
>> En hoe kan ik een alart programeren ?
Zo'n ding heet een alert.
>> Is het wel mogelijk om een ajax i.p.v. php met javascript of jquery te versturen?
Er is niet zoiets als "een ajax".
Als je een vraag stelt, wees dan aub even zo kritisch om je tekst te controleren.
Daarnaast:
>> De javascript code op controle heb ik zo gemaakt:
Gemaakt? Of bedoel je dat je een scriptje hebt gekopieerd dat op Internet circuleert en waarvan jij enkel de tekst "...Sending" hebt gewijzigd in "Vraag word verzonden" (nota bene met spelfout)?
En als laatste. Prima dat je hier een vraag stelt, maar als je diezelfde vraag ook al ergens anders hebt gesteld, is het wel zo netjes om dat even te melden.