JS Fiddle - Commet Content

- On JSFiddle the "javascript" panel has to be plain javascript, no script tags.
- Your javascript is using the ID sample_comment but the div has an id of my-comment
- You have JSFiddle set to load Mootools instead of jQuery

http://jsfiddle.net/R2saD/2/
 
Last edited:
You are being blocked by the Same Origin Policy which is a security feature of all modern browsers which cannot be got around. Basically, you can only call a service on your own domain via JavaScript, unless you're expecting a JSONP formatted response.

If you are calling an external domain, your best bet is to use a server side proxy.
 
Its calling from its own domain tho? I'm not referencing any external site as far as im aware - the code from easy comment said to put it in your root directory add a couple of lines and bish bash bosh!
 
Back
Top Bottom