Skip to content
Advertisement

Infinite Scroll won’t load more posts on scroll down when included in another file with HTML tags on top of it

I have an Infinite Scroll that loads more data (from DB) upon scrolling to the bottom,

However, when I try to include that file in another .PHP file and write any HTML tag at its top, it won’t load more posts.

On console, I get an error as

Uncaught SyntaxError: Unexpected token < in JSON at position 0

JavaScript

My code goes as :

getData.php

JavaScript

Index.php

JavaScript

Now please note that the above code works completely fine, as infinite scroll does exactly what it needs to be. But when I place it inside another file like

test.php

JavaScript

the first few posts (7) load and along with the loader.gif at the bottom. That’s all.

Any help is greatly appreciated.

Advertisement

Answer

After basic understanding on what the error is trying to say, I finally figured out this as

ERROR:

JavaScript

JSON should start with a valid JSON value – an object, array, string, number, or false/true/null. This response started with a < (hence the “Unexpected token <”).

That unexpected token, <, is a strong clue that the response was HTML instead of JSON.

The root cause is that the server returned HTML or some other non-JSON string.

So what I did was, just simply cut the JSON code into the top of the test.php leaving everything as it is.

index.php

JavaScript

test.php

JavaScript

And Voila. It works perfectly fine.

Thanks to @WesleySmith & @AngelDeykov for the time they spared on this.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement