There are plenty of examples online. Check the jQuery docs. I can only advise 
that when using load, you will need to pass all of your parameters using a URL 
string, which will limit what you can pass to the posting page. I also suggest 
passing a timestamp so the browser never caches the results. You can even use a 
CFC as your page to load. You would do something like this:

$("#mydiv").load("/cfc/mycfc.cfc?method=getform&id="+firstval+"&user="+secondval+"&ts="+gettime(),function(){//run
 stuff when the div is finished loading}); 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327548
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to