I am trying to get the json file using $.getJSON by using:
$.getJSON('json/resume.json', function(data){
alert('success');
});
but the alert message is not coming, i tried by:
$.ajax({
type: 'POST',
url: 'json/download.php',
}).success(function(){alert("hello")});
in this case the alert is coming as HELLO.
I am totally stuck.
please help
Thanks
I think you should checkout error which happens in your getJSON(), e.g.