Hello everyone,
I have this code, a simple jQuery GET:
$.get(url, params, function(){
function_call()
})
I wonder why the function_call()
is never executed. The server at url
is up and running and changing the function to $.ajax()
shows no errors (the error
option is not executed), but it's not working.
Any clue? params
is a simple JS object of two fields, and of course I've used $.get()
thousands of times with no problems.