Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2013
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.73 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <title>Для карты</title>
  4.  
  5.  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" />
  6. <script>
  7. $(function() {
  8.     $('button').click(function(){
  9.             markers = $(this).prop('id');
  10.             $('#marker').removeClass().addClass(markers);
  11.     });
  12. });
  13. </script>
  14. <link rel="stylesheet" type="text/css" href="style.css" />
  15.   </head>
  16.   <body>
  17.     <div class="wraper">
  18.      <img src="http://abratsk.ru/atlas/xvii/moscovia_m.jpg" />
  19.      <div id="marker">
  20.      </div>
  21.    </div>
  22.    <button id="marker-1">Маркеры 1</button>
  23.    <button id="marker-2">Маркеры 2</button>
  24.    <button id="marker-3">Маркеры 3</button>
  25.   </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement