How can I open a popup window with a fixed size using the HREF tag?
I have a link like this:
$contact_url = "<a href=rentals_popup.php?id=$row->rentals_id >" . "Contact" . "</a>";
How can I open that page in a different window with?
Smaller width and height
Di开发者_JS百科sabled maximize button
This should work
<a href="javascript:window.open('document.aspx','mywindowtitle','width=500,height=150')">open window</a>
Plain HTML does not support this. You'll need to use some JavaScript code.
Also, note that large parts of the world are using a popup blocker nowadays. You may want to reconsider your design!
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 content.
http://jquery.com/demo/thickbox/
I can't comment on Esben Skov Pedersen's answer directly, but using the following notation for links:
<a href="javascript:window.open('http://www.websiteofyourchoice.com');">Click here</a>
In Internet Explorer, the new browser window appears, but the current window navigates to a page which says "[Object]". To avoid this, simple put a "void(0)" behind the JavaScript function.
Source: https://support.microsoft.com/en-us/kb/257321
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.
精彩评论