Hi,
I am trying to retrieve a JSON object from the following URL
http://server/version
When i run the following script from firebug console
>>> $.getJSON("/version",function(data){alert (data.version)});
It makes a call and displays the correct version in the alert box , but it also throws a 408.
This is the output in firebug console
>>> $.getJSON("/version",function(data){alert (data.version)});
GET
https://serverurl/version 200 OK 157ms
XMLHttpRequest { readyState=1, more...}
"NetworkError: 408 Request Timeout - https://serverurl/version"
Can someone please help.
Thanks,
M