This is the wikipedia link for the "wiki search" and callback "wikipedia".
http://en.wikipedia.org/w/api.php?action=opensearch&search=wiki&callback=wikipedia
I use something like the following
function wikipedia(w){
alert(w)
}
This gives me the autosuggestions, but it gives me whole code. Is there any javascript code that can call, for example the first result of this json.
I have tried many like the following
w[1]
w.wiki[0]
but no success.