Re: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-21 Thread Underbrush
resizable - Original Message - From: Stampe, Lars To: 'Joe Webster' ; [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 4:52 PM Subject: RE: [PHP] Making a simple borderless pop up window with a "Close" button Hi, I have a script that might do what you want,

RE: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-21 Thread Stampe, Lars
'\n'+ '\n'+ ' \n'+ ' \n'+ ' \n'+ ' \n'+ ' \n'+ '

Re: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-20 Thread Joe Webster
Using the options parameter will allow you to get rid of toolbarts and scrollbars, but NOT the window's border, which the question was asking. -Joe "Bvr" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > The 3rd parameter to JavaScript function window.open()

Re: [PHP] Making a simple borderless pop up window with a "Close"button

2002-03-20 Thread bvr
The 3rd parameter to JavaScript function window.open() allows you to disable a number of window elements every browser has, these include the toolbar (buttons), location, status, menubar, scrollbars. This functionality is provided by the most common browsers and versions (MSIE and Netscape) an

Re: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-19 Thread Erik Price
On Tuesday, March 19, 2002, at 09:47 AM, Joe Webster wrote: > It only works in IE -- it makes use of the 'Full Screen' (F11) option > and > tricks IE into doing so... hope you don't want it to work in NS, > Opera... or > anything else I never realized that! But, (not that I didn't believe y

Re: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-19 Thread Joe Webster
It only works in IE -- it makes use of the 'Full Screen' (F11) option and tricks IE into doing so... hope you don't want it to work in NS, Opera... or anything else =) -Joe "Erik Price" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > On Tuesday, March 19, 2

Re: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-19 Thread Erik Price
On Tuesday, March 19, 2002, at 07:12 AM, Denis L. Menezes wrote: > I am making a database website where I need to add a small help button > for > every field on the form. Whenever the user clicks the small help > button, I > wish to show a titleless popup window containing the help text and a

RE: [PHP] Making a simple borderless pop up window with a "Close" button

2002-03-19 Thread Sven Jacobs
class.overlib does that nicely http://www.posi.de/phpclass/ -Original Message- From: Denis L. Menezes [mailto:[EMAIL PROTECTED]] Sent: mardi 19 mars 2002 13:12 To: [EMAIL PROTECTED] Subject: [PHP] Making a simple borderless pop up window with a "Close" button Hello friends. I am maki