If in jgrowl.css the position is changed to 'center', how do I override this to default i.e, 'top-right'
$.jGrowl(data, {
header: 'data',
animateOpen: { height: 'show'},
life: 10000,
position:'top-right'
});
Currently, Position doesn't work right now in the above
Thanks..
According to the jGrowl Options documentation for the position option
To do this, you'll have something like
Then you can make your call as above and omit the position setting. Judging from the jGrowl docs, you HAVE to set the position by default and my quick tests confirmed that setting the position in your $.jGrowl(...) call, has no effect.
Hope that helps