Jump to content

Basic Ajax problem


Tate

Recommended Posts

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]

Link to comment
https://forums.phpfreaks.com/topic/259843-basic-ajax-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.