Popup Windows
1 2 3 4 5 |
$('#link').click(function () { window.open('http://www.example.com','mywindow','width=400,height=200') }); |
width=300 Use this to define the width of the new window. height=200 Use this to define the height of…