Hi,
I have a dynamic score for each item on a page.
I would like the score be reloaded for a certain time.
I’m thinking about firing a link_to_remote every , say 1 second
like this.
link_to_remote "Delete this post", :update => "posts",
:url => { :action => "destroy", :id => post.id }
:frequency => 1
Too bad, there is no frequency in link_to_remote.
Any other way I can accomplish this task.
Thanks.