Jquery Inline Editing Not responding at all... wonder why

Jquery Inline Editing Not responding at all... wonder why

basically what I want is simple, when people onclick, the field become editable.

After they change the value, press Esc at keyboard/ or click outside , to save the record.

I'm not sure why it's not working. Documentation seems not complete... Anyone got idea on how this work? The documentation page: http://www.appelsiini.net/projects/jeditable

Here I post my existing code here for guys to review.

testing.html

<head>

<title></title>

<script src="jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.jeditable.mini.js" type="text/javascript" charset="utf-8"></script>

<script type="text/javascript" charset="utf-8">

$(function() {

  $(".click").editable("jeditabletest.php", {
      indicator : "<img src='indicator.gif'>",
      tooltip   : "Click to edit...",
      style  : "inherit"
  });

});

</script>

<style type="text/css">
#sidebar {
  width: 0px;
}

#content {
  width: 770px;
}

.editable input[type=submit] {
  color: #F00;
  font-weight: bold;
}
.editable input[type=button] {
  color: #0F0;
  font-weight: bold;
}

</style>

</head>



<body>     
      <b class="click" style="display: inline">Click me if you dare!</b></> or maybe you should       

</body>
</html>


jeditabletest.php

<?php
echo "hehehe"
?>




does anyone know what's wrong? I tried so many times, it just not working at all. All related library files are already put in.