Jquery open in new window


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



Copy this code and paste it in your HTML
  1. function popitup(url){
  2. newwindow = window.open(url, 'name', 'height=400,width=400');
  3. return false;
  4. }

URL: http://www.quirksmode.org/js/popup.html

Report this snippet


Comments


You need to login to view comments.