検索用のテキストボックスがあります。何らかの理由で、.blur()が私のコンピューターで機能しません。テストするためのテストファイルを作成しましたが、それでも機能しません。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$('#search').blur(function() {
alert('hello');
});
</script>
</head>
<body>
<input id="search" value="hello" type="text" />
</body>
</html>