Master Posted January 29, 2016 Report Share Posted January 29, 2016 How can I disable delete pop up confirmation page? I do not want this pop up in my details page. Quote Link to comment Share on other sites More sharing options...
0 Mathilda Posted April 12, 2017 Report Share Posted April 12, 2017 On 1/29/2016 at 11:28 AM, Master said: How can I disable delete pop up confirmation page? I do not want this pop up in my details page. I see that this post is old, however if someone else wants to do the same, you may use the script below: <script type="text/javascript"> function to_confirm() { var alertWindow = document.getElementsByClassName("Alert")[0]; alertWindow.getElementsByTagName("input")[2].click(); } document.getElementById("Mod0DeleteRecord").onclick=function to_delete() { setTimeout(to_confirm,1000); } </script> Quote Link to comment Share on other sites More sharing options...
0 Pumpedplop Posted January 5, 2023 Report Share Posted January 5, 2023 On 4/12/2017 at 4:39 PM, Mathilda said: I see that this post is old, however if someone else wants to do the same, you may use the script below: <script type="text/javascript"> function to_confirm() { var alertWindow = document.getElementsByClassName("Alert")[0]; alertWindow.getElementsByTagName("input")[2].click(); } document.getElementById("Mod0DeleteRecord").onclick=function to_delete() { setTimeout(to_confirm,1000); } </script> I know this post is old but, I put this code in my footer but it doesn't appear to be working. Any reasons why it wouldn't be working. Or is it just from to long ago? Quote Link to comment Share on other sites More sharing options...
Question
Master
How can I disable delete pop up confirmation page? I do not want this pop up in my details page.
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.