ページの右隅に2分ごとに次のコードを表示したい
#notification
= link_to "Tomorrow there are <span>#{@current_user.reminders.size}</span> events".html_safe,events_path
次のコードを試しましたが、希望どおりに機能しません...
function notification()
{
$("#notification").show("slow").delay(800).fadeout(400);
}
これどうやってするの?