|
Web Contractors Web Developer Jobs Join Us / Log in Discussion |
Popup window code
Submitted by ned on Fri, 05/18/2007 - 07:01
What's the best way to open a new window without the scrollbars etc?
Thanx
New forum topics
- [MELB] Web Developer | Web Designer | Graphic Designer | Marketing Manager
- Open Source Online Invoicing Software
- Professional Drupal Consulting, Design & Development Services in Australia
- New Year Speacial-Professional Website for 400$ with doamin+Host
- Ruby on Rails Oceana
- WebDev/Design/Research/Consultant - PHP/MySql, Javascript, Joomla, HTML, Flash, AJAX
- Freelance ASP.NET Developer
- System Monitoring with Nagios
- Learning Ruby? What about the RubyMentor Project?
- Need a team
- JAOO Sydney/Brisbane 2009
- Get Your Business a Website for $399 ONLY !!!
- Concrete5: Another CMS!
- Manage The Cloud with Amazon Web Services
- Crystal Reports developer needed


something like:
<a href=\"somepage.html\" onclick=\"window.open(this.href, 'popup', 'width=600,height=600'); return false\">click me</a>The return false part makes sure the parent window doesn't load the url in the href (onclick is before href in the event order). This is valid code for HTML strict doctype where you can no longer use "target". I have seen some funny work arounds for that.
those backslashes should be removed
Post new comment