入力フィールドにカーソルを合わせると、何も起こりません。Chromeコンソールはバグやエラーなしで返されました。JQueryスクリプトが私のコードに組み込まれています。以下のコードがあります。
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js">
</script>
<style type="text/css">
#button1 {display: none;}
</style>
<script type="text/javascript" >
$('#form1').hover(function(){$('#button1').css("display",
"block");$(this).fadeIn(100);});
</script>
<input type="text" id="form1"/>
<input type="button" id="button1" />