You need to include the jQuery source file but that's all. The only other thing 
you need to do is build your fuseaction string with javascript and append the 
select value to it. 

This seems more complicated but much easier to debug and you have more control. 
I used jQuery load() but there was a browser issue so the code above was the 
alternative for cross browser functionality.

Try it and let me know how it goes.

//build your fuseaction string however you want:
var fuseactionStringWithSelectValue = ''


//build a timestamp. I append minutes and seconds but you can do more.

var ts = '';
var timestamp = new Date();
ts += timestamp.getMinutes();
ts += timestamp.getSeconds();


ajaxLoad("fuseactionStringWithSelectValue + "&timestamp=" + ts , $("#myDiv"),
                                function(data)
                                {
                                someFunction();
                                        
                                }
                        );
                }



> I'm reading up on jquery now but haven't wrapped my head around the 
> syntax yet. Could you please step me through the code you posted?
> 
> Thanks. 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315719
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to