Basically I get a JSON feed using jquery using:
$.getJSON("http://localhost/1.php?method=getAllUsers&jsoncallback=?")
I get the values ββfrom the feed stored in an array named data
eg:.
x => 1
y => 3
z => 5
(obviously this is in json format)
after this script i have html and the table
<table><tr><td>y</td><td>value of y from the feed</td></tr></table>
Now, how can I get a specific value yin my table? Any help would be appreciated.
thank
source
share