Показать сообщение отдельно
  #3 (permalink)  
Старый 03.11.2013, 18:43
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018



<!DOCTYPE HTML>
<html>
  <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
    <style>
    .selected {
    	color: red;
    }
    </style>
  </head>
  <body>
    <li class="point">Click me!</li>
    <br>
    <this>This is text!</this>

    <script>
      $('li.point').click(function() {
        $('this').addClass('selected');
      });
    </script>

  </body>
</html>
Ответить с цитированием