コメントのBlowsieのテストは、確かにバグがあることを示しています。奇妙な振る舞い。Operaバグウィザードで報告しましたか?
jsfiddleが消えた場合に備えて、人々が参照できるように、ここに適切なコードを投稿してください。
JAVASCRIPT
$(".new").hover(function(){
$(this).find('.intro').stop(true,true).slideToggle(300)
})
HTMLコード
<div><a href="#" class="new">
<span class="bottom">
<span class="name">
The name of something
</span>
<span class="intro" style="display: none;">
The introduction of something
</span>
</span>
</a></div>
<div style="clear:both"><br/></div>
<div><a href="#" class="new">
<span class="bottom">
<span class="name">
The name of something
</span>
<span class="intro" style="display: none;">
The introduction of something
</span>
</span>
</a>
</div>
<div style="clear:both"><br/></div>
<div><a href="#" class="new">
<span class="bottom">
<span class="name">
The name of something
</span>
<span class="intro" style="display: none;">
The introduction of something
</span>
</span>
</a>
</div>
<div style="clear:both"><br/></div>
<div><a href="#" class="new">
<span class="bottom">
<span class="name">
The name of something
</span>
<span class="intro" style="display: none;">
The introduction of something
</span>
</span>
</a>
</div>
<div style="clear:both"><br/></div>
CSSコード
.new {
display: block;
width: 594px;
height: 100px;
position: relative;
border: 1px solid #000;
}
.bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.name {
font-size: 15px;
font-weight: bold;
padding: 6px;
float: right;
background: #00FF00;
}
.intro {
clear: both;
width: 584px;
font-size: 14px;
padding: 5px;
display: block;
background: #00FF00;
}