mockjax response not working

241 views Asked by At

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!

1

There are 1 answers

2
Gopal Joshi On

You forgot to add argument response in function.

$.getJson("url" , function(response){
  alert(response.hello);
});

Read more about getJson()