Ajax form
Manaus
18/05/2008 17:38:00Beste, ik heb het volgende:
Maar nu wil ik deze send naar een andere pagina versturen, hoe doe ik dat?
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$('myForm').addEvent('submit', function(e) {
/**
* Prevent the submit event
*/
new Event(e).stop();
/**
* This empties the log and shows the spinning indicator
*/
var log = $('log_res').empty().addClass('ajax-loading');
/**
* send takes care of encoding and returns the Ajax instance.
* onComplete removes the spinner from the log.
*/
this.send({
update: acties,
onComplete: function() {
log.removeClass('ajax-loading');
}
});
});
?>
$('myForm').addEvent('submit', function(e) {
/**
* Prevent the submit event
*/
new Event(e).stop();
/**
* This empties the log and shows the spinning indicator
*/
var log = $('log_res').empty().addClass('ajax-loading');
/**
* send takes care of encoding and returns the Ajax instance.
* onComplete removes the spinner from the log.
*/
this.send({
update: acties,
onComplete: function() {
log.removeClass('ajax-loading');
}
});
});
?>
Maar nu wil ik deze send naar een andere pagina versturen, hoe doe ik dat?
PHP hulp
07/11/2024 14:46:42Hipska BE
18/05/2008 17:48:00Manaus
18/05/2008 17:49:00Erwin Nieuwenhuis
18/05/2008 18:22:00Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
this.send(
'paginawaarjenaarwiltzenden.php', //dit is denk ik je oplossing
{ update: acties,
onComplete: function() {
log.removeClass('ajax-loading');
}
?>
this.send(
'paginawaarjenaarwiltzenden.php', //dit is denk ik je oplossing
{ update: acties,
onComplete: function() {
log.removeClass('ajax-loading');
}
?>