Ajax Is Not Returning Response To View Page In The Application
when I am debugging in firefox console window I can see the output but it's not coming on my viewpage , below I have mentioned my ajax code and my controller, I'm getting a result
Solution 1:
Should
$('#property').empty('clear').html(row.html);
not be
$('#property').empty('clear').html(data.html);
Also .sucess() is spelt wrong. It should be .success()
Post a Comment for "Ajax Is Not Returning Response To View Page In The Application"