I'm trying to load a remote content of my site with jquery, but I constantly get an error:
XMLHttpRequest cannot load 'anylink_here' Origin null is not allowed by Access-Control-Allow-Origin.
Here is my code:
jQuery(function(){ $('#checkout').submit(function(e){ //prevent default behavior and hide possibly existing pop-up e.preventDefault(); //process request var form = this; var url = form.action; var dialog = $('<div id="lightbox_dialog"></div>').appendTo('body'); // load remote content dialog.load( url, function (response, status, xhr){ dialog.html(response); }); dialog.dialog(); //prevent the browser to follow the link return false; }); }); And a form code:
<form id="checkout" action='http://me.me/' method='get'> <input type="image" class="class1" onclick="this.form.action='http://en.wikipedia.org/wiki/Sample'" title="Title" value="" src="http://4cornersautoloan.com/images/SmallButton.gif"> </form> I also need to do it for the same domain but from http to https.