You are developing an HTML5 web application. The application loads data from a web service by
using AJAX. The application displays the data by calling the displayData function. The data is loaded
by using the following code.
You need to ensure that the data is displayed when it is successfully retrieved from the web service.
Which code segment should you use?
A.
Option A
B.
Option B
C.
Option C
D.
Option D
ajax.done = function(data) {
displayData(dataOperation);
};
Should be:
displayData(data);
B is correct. http://api.jquery.com/deferred.done/