Sometimes we need a beautiful panel which slides up and down for better look.
Let's see how can we achieve it with simple jquery.
<script>
function slideUp(){
$("#<%= myPanel.ClienID %>").slideUp(); //myPanel is panel ID in aspx page.
}
function slideDown(){
$("#<%= myPanel.ClienID %>").slideDown();
}
</script>
No comments:
Post a Comment