I have the code:
function images(){
$.get("page").done(function(data) {
manipulation to get required data
});
}
and I have tried to get a variable from inside the get function, using global variables, return values, and functions outside of the function. Does anyone know how I would be able to get a variable from inside the get function and return it as a value if I called images()
?