GET call not working with JQUERY using an AJAX call
Can anyone see a problem with this? It was working but now 'genitive' comes back as undefined and the url doees not seem to be getting executed. The call is passed the ID of a constellation for example 42 = Hydra, the call should return the genitive which is Hydrae.
function updateSN(ev) {
ev.preventDefault();
var e = document.getElementById("frm_GreekID");
var gid = e.value;
var text = e.options[e.selectedIndex].text;
var cons = document.getElementById("frm_Constellation");
var...