F
Furtano
Gast
Bilde mich grade mit jQuery weiter. 
Warum funktioniert der Alarm nicht wenn ich but1 drücke ?

Warum funktioniert der Alarm nicht wenn ich but1 drücke ?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
// erst wenn Website vollständig geladen, Code ausführen!
$(document).ready(function(){
/***
*
* HIER DER QUELLCODE
*
*/
$(#but1).click(function(event){
alert("Ich wurde geklickt!");
});
});
/*
/$(panel).animate({ opacity: "hide" }, "slow");
*/
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>shoptanne</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body bgcolor="#f1f5f8">
<div align="center">
<div id="wrapper">
<div id="logo" align="center">
<img src="shoptanne-logo.jpg">
</div>
<div id="panel">
Hey, ich bin ein Panel!
<button id="but1">Jo</button>
</div>
</div>
</div>
</body>
</html>