I have some little problem with understanding mockjax. I have this mockjax code:
$.mockjax({
url: "get_image.php",
responseText:{
hello: 'world'
}
});
What should be js code to alert 'world'? Maybe this?
$.getJson("url" , function(){
alert(response.hello)
});
But this is not working, please help me!