Jump to content
  • 0

Меню - раздвижное


sparta
 Share

Question

Встретил вот такую проблему.

Как можно сделать, чтобы после нажатия ссылки "News" - выехала "вертикальная" табличка с новостями. Видимо тут уже javascript нужен?

Если есть у кого пример выполнения такой задачи или "если не сложно кто может продемонстрировать примерчик" прямо тут.

Горит ппц :facepalmxd: .


<table width="100%">
<tr>
<td width="100%">

<table width="100%">
<tr>
<td class="bgcolornews" align="left">
<img src="img/3star.png" width="9" height="8"><span class="news"><a href="">News</a></span> <-- Клик
</td>
</tr>
</table>


<!-- Вот эта -->

<table width="100%">
<tr>
<td class="date">21.09.2010</td>
</tr>

<tr>
<td class="textinnews" align="left">
<span class="linkinnews"><a href="">CS40 Mobile Computer</a></span><br>
Announcing the launch of Intermec CS40
</td>
</tr>

<tr>
<td align="right" valign="bottom" width="100%" style="padding-right: 15px;">
<a href="">more</a>
</td>
</tr>
</table>
</td>
</tr>
</table>

Edited by sparta
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0


<script type="text/javascript" src="jquery.js">

$(".news").click(function(){
$(".news_table").slideToggle('1000');
});
?
</script>

Что-то может не так? Скачал библиотеку с http://code.jquery.com/jquery-1.7.1.min.js.

Подключил его и код написал. Но не работает((


<table width="100%">
<tr>
<td width="100%">

<table width="100%">
<tr>
<td class="bgcolornews" align="left">
<img src="img/3star.png" width="9" height="8"><span class="news"><u>News</u></span>
</td>
</tr>
</table>


<table class="news_table" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="date" align="left">21.09.2010</td>
</tr>

<tr>
<td align="left">
<span class="linkinnews"><a href="">CS40 Mobile Computer</a></span><br>
</td>
</tr>




</table>

css подключен


.news_table {
display: none;
}

Edited by sparta
Link to comment
Share on other sites

  • 0

Я пользуюсь библиотекой google. Вот так:



<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

И качать ничего не нужно.

Что-то может не так? Скачал библиотеку с http://code.jquery.com/jquery-1.7.1.min.js.



<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".news").click(function(){
$(".news_table").toggle().slide();
});
});
</script>

?

Edited by Arinden
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