> I have some basic questions about alert() and confirm():
>
> (1) Is it possible to customize the labels in the buttons, eg. put
> "Yes" instead of "OK"?
Nope, thats not possible.
> (2) Is there a control over the text in the pop-up frame? I would like
> to get rid of "Windows Internet Explorer" (IE) or "The page athttp://192.168.22.215:5555says:" (Firefox) or replace it with
> something meaningfull.
That is not again possible (security reasons). It used to be possible
with IE, not anymore.
> (BTW, the text in the frame in Firefox is not even true as the pop-up
> does not originate in the server but locally).
>
> I browsed through tens of sites but all I found is one-liners about
> both functions. Well... maybe that's all that it is there...
You might want to take a look at Javascript 'modal dialogs'.
http://www.webreference.com/js/column90/
--
Kailash Nadh | http://kailashnadh.name
simplicity - 29 Nov 2007 01:49 GMT
> You might want to take a look at Javascript 'modal dialogs'.
> http://www.webreference.com/js/column90/
Too bad it is for IE only...
Even though that is not possible.... you can try this
http://www.subimage.com/dhtml/subModal/
i used this thing so many places.... it works for everything... A
little bit of modification to this script and you will get all teh
controls you need...
Viv
Rick Brandt - 29 Nov 2007 04:29 GMT
> Even though that is not possible.... you can try this
>
[quoted text clipped - 5 lines]
>
> Viv
I use the same sort of thing only it is also draggable.
simplicity - 29 Nov 2007 21:11 GMT
> > Even though that is not possible.... you can try this
>
[quoted text clipped - 7 lines]
>
> I use the same sort of thing only it is also draggable.
Is there a code available for download?
Thomas 'PointedEars' Lahn - 29 Nov 2007 21:24 GMT
> Even though that is not possible.... you can try this
>
[quoted text clipped - 3 lines]
> little bit of modification to this script and you will get all teh
> controls you need...
That also does not degrade gracefully and so does not conform to
accessibility guidelines and legislation. You are lucky if you
get away with this.
PointedEars

Signature
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
> I have some basic questions about alert() and confirm():
>
[quoted text clipped - 10 lines]
> I browsed through tens of sites but all I found is one-liners about
> both functions. Well... maybe that's all that it is there...
It is not possible in Javscript, but if you learn VBScript you will
find that you can. You can also mix Javascript and VBScript to make a
custom page although it is not recomended.