I'm trying to access a getJson array I created to add image references to a option list tag. I'm trying to levy it so that user can also click a link to go to the next page.
I'm fairly certain the syntax is wrong as I'm not very accustomed to jquery, could someone please help me out ?
$(function(){
$("select#chapters").ready(function...
Is it possible to read JSON feed available in another site which is HTTPS?
I'm getting empty string in return.
...
This is a very narrow scope of the code, but it is where the issue lies.
function getJSON(tabUrl){
$.getJSON(tabUrl, function(data){
console.log(data);
});
}
I am using jquery 1.3 because getJSON in 1.3 can handle malformed JSON. The server I'm getting my json from uses the old parameter:'value' format.
Here is the perplexin...