Показать сообщение отдельно
  #10 (permalink)  
Старый 16.02.2014, 23:48
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,071

KupueIIIKo,
<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>tooltip demo</title>

  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">

  <script src="http://code.jquery.com/jquery-1.10.2.js"></script>

  <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>

</head>

<body>



<p>

  <a href="#" title="Не может быть" class="form-container">Anchor text</a>

  <input title="Input help">

</p>

<script>
  $(".form-container").tooltip({position: {my: 'left center', at: 'right+10 center'},hide: {  duration: 400000 }});
  $(".form-container").tooltip( "open" );
</script>



</body>

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