26 questions
1
vote
1
answer
745
views
jQuery requesting HTTP request instead of HTTPS and the request is blocked due to mixed-content
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 ...
0
votes
0
answers
302
views
jScroll.js nextSelector not found - destroying
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. ...
0
votes
1
answer
604
views
How to scroll table rows with jQuery jScroll?
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 ...
1
vote
1
answer
1k
views
Laravel Pagination render method does not exist
I'm trying to get the infinite loading / lazy loading working and below is my code.
Controller
$categories = Category::with(['products' => function ($query) {
$query->...
0
votes
1
answer
337
views
How should I implement jScroll in a basic HTML page?
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" ...
0
votes
1
answer
453
views
Jscroll loading same content
I am using jscroll to autoscroll content.
Script section is given below
<script type="text/javascript">
$('ul.pagination').hide();
$(function() {
$('....
0
votes
0
answers
30
views
laravel paginator is producing wrong html links, goes from 1 to 3 without 2
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 ...
0
votes
1
answer
272
views
JScroll: Change nextHref after ajax changed tab and URI
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, ...
0
votes
4
answers
1k
views
using jQuery scollLeft() method to scroll to the right by default, what is wrong with my code?
Here is my code:
<head>
<title>Labs</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link ...
0
votes
0
answers
132
views
Jquery Jscroll.js gives a blank page
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="...
0
votes
1
answer
444
views
How to get Jscroll plugin ajax response in callback function
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-...
0
votes
1
answer
83
views
Filtering ajax content with jscroll
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 ...
0
votes
2
answers
3k
views
Laravel 5.4 + jScroll.js not working
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 ...
1
vote
0
answers
108
views
Jscroll for Loyout like pinterest Layout
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 ...
0
votes
1
answer
493
views
Infinite scrolling doesn't work offline
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 ...
1
vote
0
answers
640
views
What to write in nextSelector of jScroll for infinite scrolling with laravel 5 pagination?
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 ...
0
votes
1
answer
274
views
Is there an elegant way to randomize div position within jscroll?
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 ...
0
votes
1
answer
1k
views
Re-initiating bxSlider for ajax-loaded content via jscroll
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 ...
0
votes
0
answers
115
views
jscroll loaded elements not able to process js file called in the header
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 ...
0
votes
0
answers
1k
views
Infinite scroll (jScroll) and Ajax product filters
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 ...
1
vote
1
answer
2k
views
How to load content in jscroll dynamically?
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-&...
0
votes
1
answer
566
views
jquery not working for items displayed by jScroll (infinite scroll)
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 ...
-1
votes
1
answer
5k
views
Change URL (with pushState) using Infinite Scroll in WordPress
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. ...
2
votes
3
answers
3k
views
jScroll not working
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="...
0
votes
0
answers
173
views
Object in next result set of Jscroll doenot bind to javascript
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 ...
0
votes
1
answer
1k
views
Using jQuery.jScroll with MVC 5
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 ...