We have a control that was made by a pany that no longer exists. For some odd reason on page load it has now started rendering something like this to the page:
<script type="text/javascript">
alert('Your license has expired!')
</script>
Since the pany no longer exists we can't get support and the control is also very plex and is running in some legacy code that can't be quickly replaced so simply rewriting the page is also not an option (yet).
What I need to do for the time being is to have the dialog either be removed from the page before it renders or auto closed by some script ...
Any ideas?
We have a control that was made by a pany that no longer exists. For some odd reason on page load it has now started rendering something like this to the page:
<script type="text/javascript">
alert('Your license has expired!')
</script>
Since the pany no longer exists we can't get support and the control is also very plex and is running in some legacy code that can't be quickly replaced so simply rewriting the page is also not an option (yet).
What I need to do for the time being is to have the dialog either be removed from the page before it renders or auto closed by some script ...
Any ideas?
Share Improve this question edited Sep 10, 2013 at 19:57 user1228 asked Jun 26, 2013 at 13:35 WarWar 8,6284 gold badges51 silver badges100 bronze badges 3- Duplicate of stackoverflow./questions/463368/javascript-close-alert-box – Swapnil Commented Jun 26, 2013 at 13:38
- Have a look here: stackoverflow./questions/15466802/… – Atrox111 Commented Jun 26, 2013 at 13:38
- @Atrox111, that does not help with the OP's problem – epascarello Commented Jun 26, 2013 at 13:45
2 Answers
Reset to default 17You can not close an alert box, just you can hijack window.alert
window._alert = window.alert;
window.alert = function () {
};
The code would have to appear before the third party library's code. What this means is, if you want to use an alert, you would have to change your code.
One way would to call the method that has the reference
window._alert("hi");
Other way would be to overload the "new" function
window._alert = window.alert;
window.alert = function (msg, showItNow) {
if (showItNow) {
window._alert(msg);
}
};
window.alert("BOOOO!"); //I will not show up
window.alert("hi", true); //I will show up
I think you cannot do that because and alert box needs a confirmation.you can rather make a popup alert and set it to close with timeout.