refresh tab panel - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:fadeOut

Description

refresh tab panel

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <script src="https://code.jquery.com/jquery-latest.js"></script> 
      <script>
var refreshId = setInterval(function()
{
 $('#responsecontainer').fadeOut("slow").load('your target page will be    here').fadeIn("slow");
}, 100);/*from w  w  w  .j a  v a2s  . c  o m*/

      </script> 
   </head> 
   <body> 
      <div id="responsecontainer">
          here you can place your Div,html or ASP.net control 
      </div>   
   </body>
</html>

Related Tutorials