Jump to content
  • 0

Проблема с position : absolutle в всплывающих подсказках


denisOgr
 Share

Question

На странице есть поля типа input и у каждого есть атрибут tooltip="Подсказка":

  <input type="text" name="name" value="ФИО"  title="ФИО" tooltip="Введите ФИО"/>

JS скриптом я ниже каждого такого поля создаю <span> с подсказкой.

[JS]

$('[tooltip]').each(function(){

$(this).after('<span class="tooltip">'+$(this).attr('tooltip')+'</span>');

});

[/JS]

СSS


.tooltip{
width: 200px;
visibility: hidden;
z-index: 99;
position: absolute;
....................

При focus()/blur() делаю их visible/hidden

[JS]

$('input[type=text]').focus(function(e){

var left = $(this).offset().left;

var top = $(this).offset().top+30;

$(this).next('.tooltip').css({'visibility':'visible','top':top,'left':left})

}).blur(function() {

$(this).next('.tooltip').css({'visibility':'hidden'})

});[/JS]

Все работает. Но есть проблема. Есть div.

Изначально display:none;

В нем форма.

У него position:absolutle.

По событию его display:block; Он появляется по центру экрана.

Когда кликаю у поля подсказки появляют внизу экранаб а не под полями.

Там где он распологает в коде, без стиля position:absolutle

Если у #forma убираю position:absolutle, то все работает.

но как тогда помести ее в центр экрана поверх страницы.

Как сделать что бы подсказки в блоке с position: absolute; выводитлись там где спозиционирован блок?

Вот пример.

В примере нажмите на поле в фильтре(подсказка ниже появится)

и нажмите кнопку добавить и в любом поле (подсказка будет внизу)


<div id="forma">
........
<input type="text" name="name1" value="Фамилия" title="Фамилия" tooltip="Укажите фамилию."/>
........
</div>

CSS


#forma{
position: absolute;
top:25%;
left: 40%;
display: none;
}

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy