We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am including jscroll as follows:
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script src="https://unpkg.com/[email protected]/dist/jquery.jscroll.min.js"></script> <script> $(document).ready(function(){ $('.scroll').jscroll({ autoTrigger: true, loadingHtml: '<img class="center-block" src="/images/loading.gif" alt="Loading..." />', padding: 0, nextSelector: '.pagination li.active + li a', contentSelector: 'div.infinite-scroll', callback: function() { $('ul.pagination').remove(); } }); }); </script>
yet I am getting the error:
jQuery.Deferred exception: $(...).jscroll is not a function TypeError: $(...).jscroll is not a function
it's driving me crazy! any idea what's going on here? I am using it inside a Laravel blade.
The text was updated successfully, but these errors were encountered:
Instead of doing ready try: jQuery(function ($) {
jQuery(function ($) {
Sorry, something went wrong.
No branches or pull requests
I am including jscroll as follows:
yet I am getting the error:
it's driving me crazy! any idea what's going on here? I am using it inside a Laravel blade.
The text was updated successfully, but these errors were encountered: