JavaScript DHTML/jQuery/resize

Материал из Web эксперт
Перейти к: навигация, поиск

Resize event

   <source lang="html4strict">
  

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
       $(document).ready(function(){
           $(window).resize(function(){
                alert("Stop it!");
           });
       });
   </script>
 </head>
 <body>
   <body>
adsf
   </body>

</html>


 </source>