/ Published in: Other
Use this snippet to quickly insert onclick="window.open();" into your HTML...
---
Snippets can save you time and hassle of typing out bits of code that you frequently use by adding them into your files by simply double-clicking the name of the Snippet.
http://www.aptana.com/docs/index.php/About_Aptana_Snippets
Sometimes it's useful to add a popup to your pages. When the user clicks on a link, a new window opens and displays a page. http://www.quirksmode.org/js/popup.html
---
Snippets can save you time and hassle of typing out bits of code that you frequently use by adding them into your files by simply double-clicking the name of the Snippet.
http://www.aptana.com/docs/index.php/About_Aptana_Snippets
Sometimes it's useful to add a popup to your pages. When the user clicks on a link, a new window opens and displays a page. http://www.quirksmode.org/js/popup.html
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!-- category: HTML name: Onclick Popup toolTip: Onclick Popup prompt(href): Enter the HREF URL prompt(width): Enter the popup Width prompt(height): Enter the poup Height --> onclick="window.open('${href}', '_blank', 'width=${width},height=${height},scrollbars=yes,status=yes,resizable=yes,screenx=0,screeny=0');"