Guest User

Untitled

a guest
Nov 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <script>
  2. $(function () {
  3. $('#<%=pnlDone.ClientID%>').hide();
  4. $('#<%=pnlOne.ClientID%>').show();
  5.  
  6. if (Page_IsValid(""))
  7.  
  8. $('#<%=Button1.ClientID%>').click(function () {
  9. setTimeout(function () {
  10. $('#<%=pnlDone.ClientID%>').show();
  11. $('#<%=pnlOne.ClientID%>').hide();
  12. }, 1000);
  13. });
  14. });
  15. </script>
Add Comment
Please, Sign In to add comment