Сообщение от tsigel
|
ksa,
Этот вариант не сработает
|
Бивас, тест! (с)
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
.test {
display: none;
}
</style>
<script type='text/javascript'>
$(function (){
$('#i36').parent().hover(function(){
$('.test').show();
},function(){
$('.test').hide();
});
});
</script>
</head>
<body>
<span><input type="text" id="i36" disabled="disabled" /></span>
<p class='test'>Test</p>
</body>
</html>
</html>
Таки работает!
![Laugh](images/smilies/laugh.gif)