Hi,
Thanks for responding. I managed to resolve my issue which was similar to this comment:
The format of my parameters in the codepen demo did not match those in the actual demo. I’m not sure if this makes sense.
Before:
var parts = [
"https://infer.roboflow.com/",
$('#model').val(),
"?access_token=" + $('#access_token').val()
];
After:
var parts = [
"https://detect.roboflow.com/",
$('#model').val(),
"/",
$('#version').val(),
"?",
"api_key=" + $('#api_key').val()
];
Once the corrections were made the codepen demo worked.
Thanks.