Re: Custom Browse link in Insert_a_tag Dialog Firefox problems

  •  02-07-2010, 11:27 PM

    Re: Custom Browse link in Insert_a_tag Dialog Firefox problems

    Hi SaferSephy,
     
    Try add "SyncTo(element);" in you code.
     
    In my case, I add the value by a button. Like below.
     
    1. function addLink()   
    2. {   
    3. var inp_src=document.getElementById("inp_src");   
    4. inp_src.value="http://www.google.com";   
    5. SyncTo(element);   
    6. }  
    Regards,
     
    ken
View Complete Thread