最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - notify.js options are not working - Stack Overflow

programmeradmin1浏览0评论

I have the following code on my document.ready

$.notify("Your class starts in 15min", "info", {
  clickToHide: false,
  autoHide: false,
  globalPosition: 'top center'
});

but nothing happen, I only get the text and the info type, but autohide and globalposition it's not working.

What I'm doing wrong.

thanks for your helps

I have the following code on my document.ready

$.notify("Your class starts in 15min", "info", {
  clickToHide: false,
  autoHide: false,
  globalPosition: 'top center'
});

but nothing happen, I only get the text and the info type, but autohide and globalposition it's not working.

What I'm doing wrong.

thanks for your helps

Share Improve this question edited Sep 29, 2014 at 12:21 Jean asked Sep 29, 2014 at 11:57 JeanJean 5,41111 gold badges54 silver badges90 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

I just created a jsFiddle with your given information and everything works fine when you use

$.notify("Your class starts in 15min", {
  className:'info',
  clickToHide: false,
  autoHide: false,
  globalPosition: 'top right'
});

The problem was that you used the style information ('info') as the second parameter within the constructor, which actually expects an object of options $.notify( string|object, [ options ]).

Please note that I used jQuery 2.1.0 and notifyJS v0.3.1.

发布评论

评论列表(0)

  1. 暂无评论