Re: setting default html

  •  04-04-2012, 1:09 PM

    Re: setting default html

    Hi gurpreet,
    You can use html filter to switch the <tr> target, but it will switch all <tr> target too.
     
    Add the code below to the bottom of your page will achieve the html filter I mentioned above
     
    <script type="text/javascript">      
    function CuteEditor_FilterHTML(editor,code)   
    {   
        return code.split('<tr>').join('<tr valign="top">'); 
    }   
    function CuteEditor_FilterCode(editor,code)   
    {   
       return code.split('<tr>').join('<tr valign="top">'); 
    }   
    </script>  
     
     
    Regards,
     
    Ken 
View Complete Thread