Javascript examples for jQuery Method and Property:html
Smooth resize when changing html
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(window).load(function(){//www. j a v a 2 s . c om $("#a").fadeOut().html('this is a test').fadeIn() }); </script> </head> <body> <div id="a"></div> <div id="b"> foo </div> <div id="c"></div> </body> </html>