Thành viên:Trần Nguyễn Minh Huy/formatresponse.js

Sau khi lưu trang này, hãy xóa bộ nhớ đệm của trình duyệt để những thay đổi hiện ra:

Chrome, Firefox, Internet Explorer, Opera: Ctrl+ Shift+R

function formatResponse(response) { //This bit was stolen from Gracenotes.  Thanks, Gracenotes!
    try {
        response = response.query.pages;
        for (var property in response)
            return response[property];
    } catch (e) {
        return response.query.pages["-1"];
    }
}