Control.Modal and IE6 problem

Hi


 m = new Control.Modal(false,{  
     contents: function(){  
         return 'contents of modal';  
     }  
 });  
 m.open();  

i use sample code from http://livepipe.net/projects/control_modal/ API and in IE6 it makes error 'internet explorer cant open page' and then page disapear and appear normal IE white page with lots of bla bla text

Dunno why, but is it because Control.modal is in version 2.2.3 and i use prototype 1.5.0(some libraries that i use dont support newer version) If yes where can i download older version of Control.Modal?

Thx

Posted December 5th, 2007 at 1:40am by wk

Control.modal.open(function(){
    return 'contents'
},
{
  width:200,
  height:100
  /* other options */
});

Posted December 5th, 2007 at 7:36am by Roland

nope still IE stop and error page appear somebody got that problem also?

Posted December 6th, 2007 at 1:35am by wk

alternative for popup on start also welcome

Posted December 6th, 2007 at 1:36am by wk

ok, this works

<body onload='window.setTimeout('popup()',500);'>


function popup(){
 Control.modal.open(function(){  
     return 'contents'  
 },  
 {  
   width:200,  
   height:100  
   /* other options */  
 });
}

Posted December 6th, 2007 at 5:48am by wk

Login or Register to Post