Click here to Skip to main content
16,019,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
JavaScript
function showhide(panelText) {        
        var pnl = document.getElementById(panelText);
        if (pnl.style.display == '')
            pnl.style.display = 'none';
        else
            pnl.style.display = '';
        return false;
    }


This is my code. But panel is not hidden in beginning. And i want to show hide panel in a slow motion.
Posted
Updated 11-May-15 21:33pm
v2

 
Share this answer
 
C#
$("Your_Element_ID").hide("slow");

should work.

Regards..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900