Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

synchronous ajax

function getRemote() {
    return $.ajax({
        type: "GET",
        url: remote_url,
        async: false
    }).responseText;
}
 
PREVIOUS NEXT
Tagged: #synchronous #ajax
ADD COMMENT
Topic
Name
9+6 =