Jump to content
  • 0

Выпадающий текст


Kosmat
 Share

Question

1. Необходимо на странице, где мы хотим сделать выпадающий текст разместить небольшой скрипт:

<script>

function collapsElement(id) {

if ( document.getElementById(id).style.display != "none" ) {

document.getElementById(id).style.display = 'none';

}

else {

document.getElementById(id).style.display = '';

}

}

</script>

2. В том месте где должна быть ссылка с выпадающим текстом размещаем следующий код:

<div><a href="javascript:collapsElement('identifikator')" title="" rel="nofollow">Текст ссылки</a>

<div id="identifikator" style="display: none">

<p>Текст текст текст текст</p>

</div>

</div>

Вопрос, что надо прописать, что бы текст появлялся не сразу ниже ссылки, а в определенном месте на странице?

Edited by Kosmat
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

в данном случае нужно спозиционировать <div id="identifikator"...>...</div> там, где он должен появляться.

проще будет его сделать временно видимым, задать положение, а уже после скрыть

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