Jump to content
  • 0

Выбор текущего элемента jquery


olechic
 Share

Question

Добрый день. Возник вопрос. У меня на странице есть такая конструкция:

<div id="wrapper">

<div id=f1></div>

<div id=f2></div>

<div id=f3></div>

<div id=f4></div>

<div id=f5></div>

</div>

Как мне выбрать из дивов которые находятся в диве с id=wrapper, тот на который наведен указатель мыши с помощью jquery?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

$('#wrapper').on('mouseenter', 'div', function() {
// some code
});

Спасибо большое за ответ, но я наверно не правильно сформулировал вопрос. Попробую по другому: на странице есть такая конструкция:

<div id="select">

<div>

<div id="block"></div> //display: none;

</div>

<div>

<div id="block1"></div> //display: none;

</div>

<div>

<div id="block2"></div> //display: none;

</div>

</div>

Мне нужно что бы при клике по диву вложенному в <div id="select"> разваричивался скрытый див с помощью slideToggle , и обязательно тот, на котором кликнули, а остольные оставались без изменений

СПАСИБО!!!!

Edited by olechic
Link to comment
Share on other sites

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