<div onclick=popup2('SimgeSec.aSp?Form=1','simge','300','300','center'); style="cursor:pointer;width:70px; height:60px;padding:6px;margin-left:283;position:absolute;color:#dfdfdf;"> Scrollbars Ekleme
6
●512
- 09-08-2009, 00:01:26Kimlik doğrulama veya yönetimden onay bekliyor.Merhaba arkadaşlar aşşağıdaki pop'up linkine tıklandığı zaman, açılan sayfanın scroolbars ile aşşağı doğru hareket etmesini istiyorum ama bir türlü beceremedim bunu nasıl yapabilirim acaba?
- 09-08-2009, 18:07:43şöyle yap
<SCRIPT language="JavaScript" type="text/javascript"> var win=null; function popup2(mypage,myname,w,h,pos,infocus){ if(pos=="random"){myleft=(screen.width)?Math.floor (Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.rand om()*((screen.height-h)-75)):100;} if(pos=="center"){myleft=(screen.width)?(screen.wi dth-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;} else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20} settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status= no,menubar=no,toolbar=no,resizable=no";win=window. open(mypage,myname,settings); win.focus();} // --> </script>