Is there a way to find out the id of the IE window that generates alert boxes? I assume it is the document or window itself.
Either simple html or jQuery can be used.
I tried something like:
var id = $(this).parent().attr('id');
but to no avail.
Ultimately I want to find out the ID of the window/document which generates javascript alerts so I can override it.
Thanks.