Reputation: 4222
I have a script which allows to display cross domain data, example: Jsfiddle
I have put the exact same code on my website moskah.nl as you can see I get a blank page. How is this possible ?????? Do you think my website provider is somehow blocking/restricting the code?? Is it the ajax call to "//query.yahooapis.com/v1/public/yql?callback=?" , that maybe is not working in the Netherlands ?? I have talked to the helpdesk of my provider but they don't know (anything!) what is going on.
Upvotes: 0
Views: 310
Reputation: 5550
You are getting js error, which you can see in firebug console and you are getting jquery is not defined error. try loading jquery like this(added type attribute),
<script type="text/javascript" src="http://scripts.embed.ly/jquery.embedly.min.js"></script>
Upvotes: 2