First thanks for the reply.
I added to my bol code page the following where the old sweetalert script is commented out. However the new one does not appear to work. :
//var s = document.createElement("script");
//s.src = "
https://unpkg.com/sweetalert/dist/sweetalert.min.js";
//document.getElementsByTagName('head')[0].appendChild(s);
var s2 = document.createElement("script");
s2.src = "
https://cdn.jsdelivr.net/npm/sweetalert2@8";
document.getElementsByTagName('head')[0].appendChild(s2);
The installation instruction states that in order to use sweetalert2 yuo need to include another script to the page that calls for the sweetalert2 methods.
My question is how to I append that to my js page in order for it to work.
I think that this is a powerful tool for any developer instead of using the js prompt() and alert()
Thanks again