You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the top of document i use a newer version of jQuery globally.
Later in the document i switch to the older version like this:
<script src="jquery.142a.js" type="text/javascript"></script>
<script src="jquery.xdomainajax.js" type="text/javascript"></script>
<script>
//<![CDATA[
$(document).ready(function() {
$("#mycontainer").load("http://www.somedomain.de #somecontainer", function(response, status, xhr) {
if (status == "success") {
// do the kung fu
}
if (status == "error") {
var msg = "Sorry but there was an error: ";
$(".page_content").html(msg + xhr.status + " " + xhr.statusText);
}
});
});
//]]>
</script>
Got an error in jQuery.js
"a.isResolved is not a function"
With 1.4.2a everything is fine.
The text was updated successfully, but these errors were encountered: