Hi, I'm trying to POST to an external website, and display the results in a JQuery UI Dialog on my site. Is that possible? I've tried a bunch of permutations, for example (with GET):
$("#view").click(function() {
var url = this.href;
var dialog_pop = $('<div></div>');
dialog_pop.load(url).dialog();
return false; });
This seems to work if the target url is within my domain, but doesn't work if it's an external site. Also, I haven't gotten POST to work yet either.
Any ideas?
Cheers, Dean