Javascript examples for jQuery Method and Property:fadeOut
refresh tab panel
<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>