[jQuery] Re: Completion callback after events

2008-09-27 Thread Richard D. Worth
On Sat, Sep 27, 2008 at 3:35 AM, debussy007 [EMAIL PROTECTED] wrote: Hi, For a lot of asynschronous calls, like the effects, jQuery provides completion callbacks which are very useful. Unfortunately it doesn't provide completion callbacks for events. How am I able to know when an event

[jQuery] Re: Completion callback after events

2008-09-27 Thread debussy007
This is the concrete situation for which I cannot find a solution: I have several 'select' elements which contain information like: country, state, town. select size=1 name=country[...]/select select size=1 name=state[...]/select select size=1 name=town[...]/select When a country is selected, I

[jQuery] Re: Completion callback after events

2008-09-27 Thread Dave Methvin
function selectTown(country, state, town) {         $('#country').val(country);         $('#country').change(); // - this will load the states in the select         // once the country has been selected         // and select element containing states has been populated, then do         //