Forum Discussion
KenCasser
8 years agoQrew Cadet
But actually, I'm using :
var url = "https://xxxx.quickbase.com";
url += "/db/";
url += "abcdefghi";
url += "?a=API_AddRecord";
and then the url gets called from $.ajax
so now I'll try rewriting the javascript without the .ajax
var url = "https://xxxx.quickbase.com";
url += "/db/";
url += "abcdefghi";
url += "?a=API_AddRecord";
and then the url gets called from $.ajax
so now I'll try rewriting the javascript without the .ajax
KenCasser
8 years agoQrew Cadet
Honestly, I'm not sure what that means (as previously mentioned, I'm a self-taught hack), BUT - your answer worked! I got it to do what I wanted it to do. Thank you thank you!