I need to reload the page after the OK button is clicked on the Alert box. I am using the following code for it
alert(\"Successful Message\"); window.locati
use confirm box instead....
var r = confirm("Successful Message!"); if (r == true){ window.location.reload(); }