The following code works fine in Firefox but in IE the link is never called, the exception is called with a rather generic [Object Error]
var GoalID = "e13e68a8-ae18-49f1-9d2f-e052a63fac51";
try
{
$.ajax({
type: "GET",
url: "http://www.externallink.co.uk/GoalAccessed.aspx?id=" + GoalID,
dataType: "script"
});
}
catch(err){alert(err);}
Is there any way of overcoming this issue?