Wrong positioning when using jQuery >= 3.0
Steps to reproduce:
- Edit any examples/*.html that long enough to have scrolling bar
- Replace jQuery with
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> - Scroll to the bottom and reload the page
Not sure if it's a jQuery issue, but notifyjs seems incompatible with jQuery >= 3.0 Fallback-ed to 2.2.4 and it worked again.
Even I am facing the same issue.
Can confirm, works in 2.2.4, broken in any version 3.x.x
+1
Not sure if people are still having this problem, but 3.2.0 seems to fix it for me.
Still have the same issue, notification incorrectly positioned.
With the latest 2 versions of jquery - 3.3.1 and 3.4.0, messages pop up not under the form field, but in the upper left corner of the screen.
All this works correctly up to version 3.2.1 of jquery inclusive.
And somehow adaptive it is necessary to make pop-up messages.
In case this helps anyone:
I was seeing this behavior when using element positioning due to the element being contained within a table cell (technically, a div with display: table-cell). I was able to resolve it by adding the style position: relative to the notification element.