hide() & Show function
hide() & Show function
Greeting Friends,
I am adil i m new in jquery. Iwant to know that i add hide and show function in ASP.NET Website and when i execute it the wont working i don't know what is happened please any help appreciated.
My Code
- <script type="text/javascript">
- {
- $(document).ready(function(){
- $('#btnhide').click(function(){
- ${'#panel').hide(5000);
- });
- $('#btnshow').click(function(){
- ${'#panel').show(5000);
- });
- });
- <asp:Button ID="btnhide" runat="Server" Text="Hide" />
- <asp:Button ID="btnshow" runat="Server" Text="Show" />