I have a form with a update-button. I want the user to confirm before updating, redirecting the update-button to an URL like this:
javascript:apex.confirm('Really update?', 'UPDATE');
I have an update-process that should trigger when request value = 'UPDATE'. However, the value is escaped and looks like this in HTML:
<button onclick="apex.confirm('Please confirm update', 'UPDATE');"
Is there a way to escape those chars?
Regards
Erik