Youss
Youss

Reputation: 4222

My jquery/ajax website not working

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

Answers (1)

Vivek S
Vivek S

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

Related Questions