Pete,

I would look into jQuery for AJAX. It is rockin' simple:

$( "input.status" ).click(
function(){
var jCheckbox = $( this );
$.get(
"change_status.cfm",
{ id: jCheckbox.attr( "id" ) },
function(){ ... Callback ... }
);
}
); 


......................
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/


-----Original Message-----
From: Peter Tanswell [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 30, 2007 9:07 AM
To: CF-Talk
Subject: Re: Can this be done

Yeah


I had just been browsing a book on AJAX, but havent used it before so a
liitle bit lost.

Any suggestions or anywhere where I can get enough info to let me do
this?

Thanks in advance.





On 10/30/07, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
>
> Sounds like a good place for a little ajax magic. When you check a 
> box, it'd be cool to update the status without leaving or refreshing 
> the page.
> You could also use some ajax to have the remaining time update in real

> time as well.
>
> ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
>
>
>
>
> 



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292325
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