Adding Header in SIngleList and MultiList with jQuery

    [javascript]
    <script src="jquery.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function(){
    $(‘.listhead td:first’).html(‘<b>Activities</b>’);
    })
    </script>
    [/javascript]

    Leave a Reply