There are quite a few template files, particularly in the admin section, that use ajax to call cart urls for things like autocomplete.
They are using the older success() function callback.
This is deprecated from jquery 1.8 and will be removed in future.
The recommended method is to use the done & fail chained functions
Code: Select all
var jqxhr = $.ajax( "example.php" )
.done(function() {
alert( "success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "complete" );
});
Might not be an issue for a while, but eventually will be if jquery is updated in future releases.