2012-05-28 2 views

답변

2

당신은 Thickbox와의 명령으로 자바 스크립트에서 setTimeout()을 사용할 수 있습니다, 뭔가 같은 :

// when dom is ready 
$(document).ready(function() { 
     // set a timer thats run 5sec 
    setTimeout(function(){  
     // open the pop 
     var me = $('#ElementToOpen'); 
     var t = "title" 
     var a = "openurl"; 
     var g = false; 
     tb_show(t,a,g);  
    },5000); 
}); 
관련 문제