Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 289 Bytes

popup-window-html.md

File metadata and controls

18 lines (12 loc) · 289 Bytes

? ways of creating popups

function popitup(url) {
    newwindow=window.open(url,'name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
    return false;
}
<a href="popupex.html" onclick="return popitup('popupex.html')"
    >Link to popup</a>