How to add a prompt (pop up) to ask "Are you sure?" on post form submit.
Solution:
Add the jQuery code below:
$('form#the_id').submit(function() {
var c = confirm("Click OK to Submit Note");
return c; //you can just return c because it will be true or false
});
Replace "the_id" with the generated ID for your form.