Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   Detect whether javascript threw an alert window (with javascript) (http://www.velocityreviews.com/forums/t926568-detect-whether-javascript-threw-an-alert-window-with-javascript.html)

umdsasha@gmail.com 08-24-2006 04:09 AM

Detect whether javascript threw an alert window (with javascript)
 
So, basically, I need to detect whether an alert window was thrown. I
can't find where it's thrown from but I need to disable a button only
if there were no alert windows thrown. Any ideas?

Thanks
Alex


guywmustang 08-24-2006 04:37 AM

Re: Detect whether javascript threw an alert window (with javascript)
 
If you're using a try{ } catch {}
Just add a variable in there to increment a counter... check to see if
the counter was > 0 ... How are you getting this alert to come up?


umdsa...@gmail.com wrote:
> So, basically, I need to detect whether an alert window was thrown. I
> can't find where it's thrown from but I need to disable a button only
> if there were no alert windows thrown. Any ideas?
>
> Thanks
> Alex



RobG 08-24-2006 04:49 AM

Re: Detect whether javascript threw an alert window (with javascript)
 
umdsa...@gmail.com wrote:
> So, basically, I need to detect whether an alert window was thrown. I
> can't find where it's thrown from but I need to disable a button only
> if there were no alert windows thrown. Any ideas?


Presumably, you are the one calling alerts so surely you can do this
some other way? Anyhow, all you do is assign a reference to
window.alert to some other global variable, then assign your own
function to window.alert - you *must* do this in the right order or
you'll lose your one and only reference to the window.alert function.

Disable the button by default, then enable it with your replacement
alert function. Of course users without JavaScript won't be able to
enable the button, but then they can't call alerts either. :-)

e.g.

<script type="text/javascript">

// Function to run when alert called
function trapAlert(msg){
document.getElementById('aButton').disabled = false;
xAlert(msg);
}

// Assign reference to window.alert to another variable
var xAlert = window.alert;

// Re-assign window.alert
window.alert = trapAlert;

</script>

<input type="button" value="Button to enable" id="aButton" disabled
onclick="alert('I\'m working!!');">
<input type="button" value="Call an alert" onclick="alert('hey');">


--
Rob


Laurent Bugnion 08-24-2006 06:25 AM

Re: Detect whether javascript threw an alert window (with javascript)
 
Hi,

> umdsa...@gmail.com wrote:
>> So, basically, I need to detect whether an alert window was thrown. I
>> can't find where it's thrown from but I need to disable a button only
>> if there were no alert windows thrown. Any ideas?
>>
>> Thanks
>> Alex


guywmustang wrote:
> If you're using a try{ } catch {}
> Just add a variable in there to increment a counter... check to see if
> the counter was > 0 ... How are you getting this alert to come up?


try catch will catch an exception, not an alert window. You were
probably confused by the use of "thrown". alert windows are not thrown,
they are displayed ;-)

HTH,
Laurent


--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch


All times are GMT. The time now is 12:44 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57