-
Notifications
You must be signed in to change notification settings - Fork 641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$.notify is not a function #201
Comments
You wouldn't happen to have a public URL I could look at to look into this issue. |
May it be that animate.css was not included? |
Rethink the order of your javascript imports. Maybe you placed your notification trigger before the notify.js import. |
in my case i have to put the |
Worked! Thankyou :) |
Mostly it's due to the jquery version, use the compatible version of Jquery, Problem will be solved |
I solved with |
i use bootstarb 4 and php. this solution not work for me u write this code frist line? |
Hello, I'm facing a problem developing with Notify (Now UI from Creative TIM).
I saw a similar issue #152, but the solutions are not so optimistic.
My environment:
Laravel 5.6
vue.js 2.5.7
Bootstrap 4.0.0
Jquery 3.3.1
in vue.js
.then(function (resp) { $.notify("Hello World"); app.$router.push({path: '/admin/'}); })
The console logs as
Without Vue.js, the problem is still there.
I'm running everything OK if the code is
<script> jQuery.notify("Hello World"); </script>
but when it comes to
<script> $(document).ready(function() { jQuery.notify("Hello World"); }); </script>
The console also logs as
How can I fix this? or is there any one having the same issue here?
Thanks for reading ^ _ ^
The text was updated successfully, but these errors were encountered: