<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
function formSubmit()
$('#newhtml').html('hello world');
</script>
</head>
<body>
First name: <input type="text" id="fname" name="fname"><br>
<input type="button" onclick="formSubmit()" value="Search Data">
<div id="newhtml"></div>
</body>
</html>
上記のコードで、クリック時に formSubmit() 関数を実行するボタンをクリックしようとしましたが、div newhtml が hello world に変わりません。
上記のコードに何か問題がありますか..
ありがとう!