Aptana Snippet: Javascript popup window


/ Published in: Other
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. <!--
  2. category: HTML
  3. name: Onclick Popup
  4. toolTip: Onclick Popup
  5. prompt(href): Enter the HREF URL
  6. prompt(width): Enter the popup Width
  7. prompt(height): Enter the poup Height
  8. -->
  9. onclick="window.open('${href}', '_blank', 'width=${width},height=${height},scrollbars=yes,status=yes,resizable=yes,screenx=0,screeny=0');"

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.