Skip to content

Commit d786cbf

Browse files
AndySky21mgol
authored andcommitted
jQuery.getJSON: Change the removed jqXHR.complete to jqXHR.always
`jqXHR.complete` has been removed in jQuery 3.0. Closes jquery#1150
1 parent 7010c4c commit d786cbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/jQuery.getJSON.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ var jqxhr = $.getJSON( "example.json", function() {
8282
// Perform other work here ...
8383

8484
// Set another completion function for the request above
85-
jqxhr.complete(function() {
85+
jqxhr.always(function() {
8686
console.log( "second complete" );
8787
});
8888
</code></pre>

0 commit comments

Comments
 (0)