admin管理员组

文章数量:1347158

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.

本文标签: javascriptnotifyjs options are not workingStack Overflow