Hi,

I have a problem with my toggle function...it disables all the links
in the tr (when i click on the link it just changes the color of the
tr)...How do i fix it?

$(".table_data tr").toggle(
                        function(){
                                $(this).css("background-color","#FEFFAF");
                        },
                        function(){
                                $(this).css("background-color","#FFF");
                        }
                );

Thanks!

BR

Reply via email to