12 Mayıs 2010 Çarşamba

Java Script ile Pop Up Window Oluşturma

Html Sayfamıza aşağıda vereceğim java script kodunu ekliyoruz;

var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=400,width=200');
if (window.focus) {newwindow.focus()}
}

Aşağıdaki kod ile istediğimiz link ile herhangi bir html sayfamızı yukarıdaki fonksiyonda belirleyip değiştirebileceğimiz boyutlar ile açıyoruz.

a href="javascript:poptastic('adres.html');"> Link Adı /a

Hiç yorum yok:

Yorum Gönder