Re: Can't use CuteChat with CuteMessenger on the same page

  •  10-12-2008, 4:42 AM

    Re: Can't use CuteChat with CuteMessenger on the same page

    Vasyl:
     
    That because the HtmlInitialize() function be called twice.
     
    you can try to fix it by this way , put the script after </body> :
     
    <script>
    var old_HtmlInitialize=HtmlInitialize;
    HtmlInitialize=function()
    {
        try{ old_HtmlInitialize() }catch(x){}
    }
    </script>
     
    Regards , Terry .
View Complete Thread