Hi,
have the following code:
$(document).ready(function() {
$.get("https://www.somesite.com/Securepay/Return.aspx, function(data) {
alert(data);
$("#result").html(data);
});
});
the above code does not return the html. Does anyone have a solution? thanks