Is this valid jQuery? Or have I mixed it up with regular JavaScript too much? In any case it is not working (I would expect it to print "testing" between the appropriate tags):
<script type="text/javascript">
  var testing = "testing";
  testIt=function() {
    $('#cont').html(testing);
  }
</script>
to be invoked when:
<input TYPE="button" NAME="button4" Value="Write" onClick="testIt()">
obviously there is a:
<div id="cont"> </div>
in the html.
