I use the following code:
<div id="success"></div>
<script>$.getJSON('http://daytona.bg/test.html', function(data) { $(data.html).appendTo("#success"); } );</script>
The script is loading and appending but only if the test.html is on my computer. If it's on a external domain - it's not working.
How can it be done?