jquery を使用して、以下の HTML ドキュメントのすべての入力を選択し、「keydown」イベントで「this」を選択して、次の要素を表示しようとしています。
私のjQuery
$(document).ready(function(){
$('.hint').hide();
});
$('input').keydown(function(){
$(this).show();
});
私のHTML
<!DOCTYPE html>
<html>
<head>
<title>Title of my Page</title>
</head>
<body>
<p>
<input type="text"><span class="hint">Something cool</span>
</p>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>