function onclickfunc() {
var CPRID = document.getElementById("CPRform");
$.ajax({
type: "POST",
url: "html5-webcam-save.php",
data: {
userid: CPRID
}
});
}
When trying to parse in and send the information collected in the "form" on button click, i get this error:
All I am really trying to do here is to send the information gathered, to my PHP document.
any ideas?