Displaying 1 result from an estimated 1 matches for "assocchange".
2009 Jul 24
6
Routes from raw js (using XMLHttpRequest)
...it is
posting somewhere and I believe that because in firefox, the error
concole is clean. Can someone tell me from my js below where I am
posting, or why my controller method isnt getting the post? Thanks,
Janna B
//this function is getting called by an onchange in the associates
select
function assocchange(therow){
var s = document.getElementById("assoc"+therow).value;
var url = "/channels/assocboxchange/"
var parameters = "assoc=" + escape(encodeURI(s)) + "&id=" + therow;
formid="assoc" + therow;
makePOSTRequest(url, parameters, formid)...