vote up 0 vote down star

I have a link like this

$contact_url="<a href=rentals_popup.php?id=$row->rentals_id >" . "Contact" . "</a>";

I want to open that page in a different window with

SMALLER WIDTH AND HEIGHT

DISABLED MAXIMIZE BUTTON

Can Anybody help me plz

flag

55% accept rate
1  
Disabling the maximize button seems overly limiting and downright rude to your users. What, I can stretch it until it fills the screen, but I can't let the operating system do it for me? – Thomas Nov 7 at 14:40

4 Answers

vote up 3 vote down

Plain HTML does not support this. You'll need to use some Javascript.

Also, note that large parts of the world are using a popup blocker nowadays. You may want to reconsider your design!

link|flag
Oh. Nice Suggestion. Thanks Thomas. But my requirement is that i want small window or dialog open and in that my php file should be shown – Rajasekar Nov 7 at 14:36
vote up 2 vote down

This should work

<a href="javascript:window.open('document.aspx','mywindowtitle','width=500,height=150')">open window</a>
link|flag
vote up 0 vote down

You might want to consider using a div element pop-up window that contains an iframe.

JQuery Dialog is a simple way to get started. Just add an iframe as the content.

link|flag
vote up 0 vote down

since many browsers block popups by default and popups are really ugly I recommend using lightbox or thickbox they are prettier and are not popups they are extra html markups that are appended to your document's body with the appropriate CSS

http://jquery.com/demo/thickbox/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.