Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
745 views

I have my site build on Laravel and using onscroll pagination at frontend with JScroll JavaScript plugin. I have properly setup my server and it is automatically redirecting to HTTPS. And when I ...
Jessica Shamoon's user avatar
0 votes
0 answers
302 views

I'm trying to implement infinite scroll with jScroll.js and Laravel 5.7. my code below as far as I followed all the tutorials and all the questions and answers on Stackoverflow I can't get it to work. ...
user2682025's user avatar
0 votes
1 answer
604 views

There is not many useful examples with jQuery jscroll and it is a fact it doesn't work with table rows by default because it puts the results into a div element which screws up the table. I had this ...
Zoltán Süle's user avatar
1 vote
1 answer
1k views

I'm trying to get the infinite loading / lazy loading working and below is my code. Controller $categories = Category::with(['products' => function ($query) { $query->...
1myb's user avatar
  • 3,592
0 votes
1 answer
337 views

I'm trying to replicate this useless website: http://endless.horse, but the jScript documentation does not do a great job of explaining how to implement it. Basically, I need a block of text "Body" ...
wtrfl's user avatar
  • 105
0 votes
1 answer
453 views

I am using jscroll to autoscroll content. Script section is given below <script type="text/javascript"> $('ul.pagination').hide(); $(function() { $('....
Asheeka K P's user avatar
0 votes
0 answers
30 views

No idea what's going on here. However I am trying to user jScroll on a page, I successfully used it in another one but it's not working here. I noticed that the links generated by laravel are ...
Chriz74's user avatar
  • 1,480
0 votes
1 answer
272 views

JScroll can't see when the javascript changed window history with pushState. I added JScroll for posts on index page. The default URL is localhost for example. And when there is no path after, ...
mile-panic's user avatar
0 votes
4 answers
1k views

Here is my code: <head> <title>Labs</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link ...
poopyh3ad's user avatar
0 votes
0 answers
132 views

I use this plugin : jScroll (http://jscroll.com). It's a jQuery plugin for infinite scrolling. After the last element it loads the next one via the pagination next. html Example : <div class="...
kwartz's user avatar
  • 23
0 votes
1 answer
444 views

Trying to get jscroll response in callback function, looking for url received in response, so that it can be updated on scrolling and get page view. <script type="text/javascript"> $('.next-...
user3245988's user avatar
0 votes
1 answer
83 views

I am using bootstrap filters and I load the whole ajax response to a div.It contains the link to the next page for jscroll.However its not working it does not load.When I first enter my page it works ...
anna petrai's user avatar
0 votes
2 answers
3k views

I'm trying to implement an infinite scrolling based on this tutorial. Couldn't be simpler, right? well... It's not working. This is my code here: In the route file (I didn't put it in a controller ...
Jorge Anzola's user avatar
  • 1,235
1 vote
0 answers
108 views

I Need to Load a boxes when scrolling( like pinterest .) I have used jscroll. as below. But loads all the boxes(pages) when page loades. It needed to be load when scrolling. Can anyone help me to fix ...
user's user avatar
  • 125
0 votes
1 answer
493 views

I am trying to learn jQuery and particularly jScroll from real examples. I found this website that might look silly to you but it's dead simple so it's a great example of jScroll work for me. The ...
Jeyekomon's user avatar
  • 3,556
1 vote
0 answers
640 views

I am quite new to Laravel and jQuery, so maybe this is a silly question. I am stuck and I don't know what to write in the nextSelector section of jScroll. nextSelector is supposed to contain the link ...
Ronit's user avatar
  • 127
0 votes
1 answer
274 views

I lay out a series of divs in random, non-overlapping positions. I use jscroll to add more divs when the user reaches the bottom of the page. However, those new divs should also be randomly placed ...
georgeglue's user avatar
0 votes
1 answer
1k views

I am having content that spans over multiple pages. Via jscroll I can successfully append the further pages’ content to my current page. I am using a button to initiate the loading of the additional ...
physalis's user avatar
  • 253
0 votes
0 answers
115 views

I have a project running on codeigniter where I am using a jscroll for infinite scrolling. I was using a js file called rotator.js to flash comments on each of the posts. When my home controller runs ...
Abhilash Lenka's user avatar
0 votes
0 answers
1k views

I have an issue, where I use jScroll for infinite scroll(jScroll), which works fine when the page loads. But the infinite scrolling is not working after an ajax call by a product filter in a search ...
Troels Johannesen's user avatar
1 vote
1 answer
2k views

I have a controller in codeigniter which loads the posts like: public function loadpost($pg, $count = 2) { $offset = ($pg - 1)*$count; $this->load->model('posts'); $posts = $this-&...
Abhilash Lenka's user avatar
0 votes
1 answer
566 views

I'm using jScroll (jscroll.com) in my Laravel 5.1 application for infinite scrolling. I'm further using some jquery which I want to be triggered on clicking the 'Like' button for each post. Jquery is ...
Ahmed Raza's user avatar
-1 votes
1 answer
5k views

I've set up the infinite scroll from here and it works: https://github.com/pklauzinski/jscroll. Additionally I would like to change the URL in the browser address bar but I can't get it working. ...
drH's user avatar
  • 1
2 votes
3 answers
3k views

my jScroll is not working, although I followed the example on http://jscroll.com/#example Am I doing it wrong? I have very little experience with jQuery. <html> <head> <script src="...
HCLivess's user avatar
  • 1,073
0 votes
0 answers
173 views

I have implemented jquery jscroll on first page load all data is showing perfectly with the perfect respective animation but on 2nd data set animations are not working. What I am doing is i have made ...
Kirtesh's user avatar
  • 117
0 votes
1 answer
1k views

I'm trying to implement infinite scrolling with the jScroll plugin y Philip Klauzinski. I have included the jScroill js file along with jQuery and nothing is happening. Here's my view: @model ...
PsychoCoder's user avatar
  • 10.8k