I'm doing a cross domain request with JSONP (with jQUery). But the server where I do the request on is just a simple .txt file which get updated real time.
I cannot access the domain nor change how the data is given. It's like how it is on the link.
http://www.zro.be/v1/pll/playlist.txt
There's info about a bridge (if it's open or closed) which I need to parse. I get the required data but I get an error
Uncaught SyntaxError: Unexpected token &
I think it's because of the weird markup of the data.
&nu=Mojo Dreams - Met Mark Verbert ( Do 20-21U )&straks=Gotye - In Your Light&vorige=Blondie - Maria&zro=ZRO's selection&brug=Zelzate brug vrij voor wegverkeer
How can I make it run expecting all data, so free text allowed? So I don't get the Syntax Error.
Many thanks
Jesse