Guest User

Untitled

a guest
Oct 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.68 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     <script src="jquery-1.6.2.min.js" type="text/javascript"> </script>
  4.     <script src="ajaxLoader.js" type="text/javascript"> </script>
  5.     <style>
  6.         .ajaxLoader.loading {
  7.             position: absolute;
  8.             left: 50%;
  9.             top: 50%;
  10.             border: solid 1px #000;
  11.             background-color: #aaa;
  12.             width: 200px;
  13.             height: 40px;
  14.             text-align: center;
  15.             padding-top: 15px;
  16.             margin-left: -100px;
  17.             margin-top: -27px;
  18.            
  19.         }
  20.     </style>
  21.     </head>
  22.     <body>
  23.         <a href="texto.php" target="divName" class="ajaxLoader"> Carregar texto </a>
  24.         <div id="divName">
  25.         Aqui vai ficar o texto carregado!
  26.         </div>
  27.        
  28.         <div class="ajaxLoader loading">
  29.         Carregando...
  30.         </div>
  31.     </body>
  32. </html>
Add Comment
Please, Sign In to add comment