我想在页面右侧每 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);
}
我怎样才能做到这一点?