javascript - Unable to get json data in IE9 browsers -
here have javascript code getting json data. getting json values. in firefox , chrome able see values not in ie9. can please tell me why is?
$.getjson("getuserinfo?uid=" + user, function(result) { console.log("user info"); console.dir(result); aadhaarid = result.aadhaarid; username = result.name; console.log(result.aadhaarid); $("#uname").html(result.name); });
Comments
Post a Comment