Provide a more complete implementation of JavaScript that supports $.post to a php script
In a Captivate 11 project, I have some JavaScript that I use to communicate with a php script on a web server. The php script receives information from the Captivate module via a JavaScript post command, and it subsequently updates a SQL database. This is non-functional in Captivate 12. It appears that the ability to call a post command is blocked or not implemented. Here is my post command in JavaScript (specifics replaced with asterisks).
$.post('https://www.**********.com/insertexdata.php',{vcapModule:rptSystem, vcapDataElementText:modText, vcapComment:commentAction, vcapUsername:myStudentName, vservername:myServername, vusername:myUsername, vpassword:myPassword, vdbname:myDbname}, function() {});
