Tate Posted March 27, 2012 Share Posted March 27, 2012 Ok so what I wan't to achieve is when I mouse over an element to make an ajax call to return json data that will then be turned into a JS object to be used in the current view. Is this the correct way of doing this? for some reason the object returned has no properties but it's showing in the console log as a correct object. $('element').mouseover(function(){ $.get('phppath', function(data) { var item = $.parseJSON(data); }); }); When I console.log the item it will display correctly, when I try to access its properties they result in undefined. eg item.property = undefined, item = [object] Quote Link to comment Share on other sites More sharing options...
Tate Posted March 30, 2012 Author Share Posted March 30, 2012 30 views no reply? this can't be that difficult. Quote Link to comment Share on other sites More sharing options...
RichardRotterdam Posted March 30, 2012 Share Posted March 30, 2012 When you do console.log(item) what's the output? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.