should be :onmouseover not :mouseover
    def link_to_remote_mover(name, options = {}, html_options = {})
         link_to_function_mover(name, remote_function(options),  
html_options)
       end
       def link_to_function_mover(name, *args, &block)
         html_options = args.last.is_a?(Hash) ? args.pop : {}
         function = args[0] || ''''
         html_options.symbolize_keys!
         function = update_page(&block) if block_given?
         content_tag(
           "a", name,
           html_options.merge({
             :href => html_options[:href] || "javascript:void(0)",
             :onmouseover => (html_options[:onmouseover] ? "# 
{html_options[:onmouseover]}; " : "") + "#{function}; return
false;"
           })
         )
       end 
  
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---