I am working on a site that requires 12+ individual widgets that have 2 links each which appear on the rollover of the individual widget.
This is the partial being rendered for each widget right now: <div class="widget" id="channel_<%= channel.id %>"> <div class="thebox" style="background: url(<%= static_url_for(channel.big_image) %>) no-repeat;" onmouseover="Effect.toggle('show_<%= channel.id %>','appear', { duration: .1 }); return false"> <div id="show_<%= channel.id %>" class="show" style="display:none;" onmouseout="Effect.toggle('show_<%= channel.id %>','appear', { duration: .1 }); return false"> <%= link_to_remote('Preview', :update => dom_id(channel), :url => { :action => "widget", :id => channel }, :html => {:class => 'preview'}) %> <%= link_to "Get #{channel.name}<br />on my phone", {:action => 'subscribe', :id => channel.id}, :class => 'subscribe' %> </div> </div> </div> Output looks something like... <div class="widget" id="channel_93"> <div class="thebox" style="background: url(/st/channels/93/ big_image.jpg) no-repeat;" onmouseover="Effect.toggle('show_93','appear', { duration: .1 }); return false"> <div id="show_93" class="show" style="display:none;" onmouseout="Effect.toggle('show_93','appear', { duration: .1 }); return false"> <a class="preview" href="#" onclick="new Ajax.Updater('channel_93', '/ feb/widget/93', {asynchronous:true, evalScripts:true}); return false;">Preview</a> <a href="/subscribe/93" class="subscribe">Get Hot Girls<br />on my phone</a> </div> </div> </div> This ends up behaving rather kinky, if you rollover a widget too fast the links pop up and stay there instead of disappearing like they are supposed to. Is there a more clever way of accomplishing this? or a way to fix this? Thanks --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---