[jQuery] Re: return value of nested functions is always undefined

2009-06-22 Thread anawak82
Hi Rob, thank you for your quick reply! > Add a return statement to getPrice, maybe something like: > > function getPrice(id) { > return $.get('db.xml', function(d){ > ... > }); I am sorry to say that this only return a XMLHttpRequest but not the value of the variable price. Ki

[jQuery] return value of nested functions is always undefined

2009-06-22 Thread anawak82
Hi, I am just trying to learn a little bit about jQuery. Now I have a problem with returning a value from a function. The following code works fine, when I tested it with alert(price) or any other way of echoing the value directly. But if I try something like var test = getPrice(324), the variabl