Re: [Proto-Scripty] Delaying the execution of an AJAX Request.

2010-08-31 Thread Johan Arensman
Hello, Why not do exactly what you say, compose all the parameters for the request and execute whenever you want: var url = '/foo.php'; var ajaxOptions = { option1: foo, option2: bar } // do whatever you want.. // even add something ajaxOptions.option3 = 'bla'; // then execute new

Re: [Proto-Scripty] Delaying the execution of an AJAX Request.

2010-08-31 Thread Richard Quadling
On 31 August 2010 15:17, Johan Arensman johanm...@gmail.com wrote: Hello, Why not do exactly what you say, compose all the parameters for the request and execute whenever you want: var url = '/foo.php'; var ajaxOptions = {   option1: foo,   option2: bar } // do whatever you want.. //