Ekrem
Kategori:Çalışma Notları
| Tarih:
12/18/2019 2:48:00 PM
Bu yazı 1280 defa okundu
Yeni Pencere Açma
Pencerenizin üzerinde pencere açmak istiyorsunuz. Hem ortada hem verdiğiniz ölçüde hem de adres satırının değiştirilebilir olmamasında mutabık isek aşağıdaki kod tam size göre.
Buyrun
function smsPenceresiAc(url, title, w, h) {
var w = '350';
var h = '250';
var left = (screen.width / 2) - (w / 2);
var top = (screen.height / 2) - (h / 2);
var popup = window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
popup.focus();