Jump to content

Popup window


Recommended Posts

Do you mean some kind of div-overlay or a new small browser window?

For the overlay check out jQuery.ajax()

For the browser window this here might help

function popup (url) {
var pop = window.open(url, "popup title", "width=400,height=300,resizable=yes");
pop.focus();
return false;
}

Link to comment
https://forums.phpfreaks.com/topic/266190-popup-window/#findComment-1364171
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.