I'm trying to get some information to my website from an other URL but I have this error when my page tries to load the content.
XMLHttpRequest cannot load "urltarget" No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
I'm using this JavaScript to get the information.
<script type="text/javascript">
$(document).ready(function() {
$("#div").load('urltarget class_contentinfo');
});
</script>