Dear experts
I have following codes
<html>
<head>
<script type="text/javascript" src=jquery.js"></script>
<scritp type="text/javascript">
$(document).ready(function(){
$('button[name="button1"]'.click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<form>
<p>hello</p>
<input type=button name=button1 value=hide>
</form>
</body>
</html>
Why it does not work?