jQueryでhttp-post

jQueryのformプラグイン使う。
htmlでform作ってtwitter.cgiにpostの準備

<form id="twitForm" action="twitter.cgi" method="post">
message:
<input type="text" name="message" value="hello hello" size="60" />
<input type="submit" value="Twit!" />
</form>

submit時のイベントを登録しておく

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript">
$(document).ready(function() {
  $('#twitForm').ajaxForm(function() {
    alert("twitted");
  });
});
</script>