[jQuery] Jquery change event

[jQuery] Jquery change event


How do I get jquery's change event you fire per letter typed into a
text box? I'm using the code below, but it only fires when I tab off
the textbox.
Thanks,
Ronn

<html>

<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/
javascript">
$(document).ready(function() {
$('input').change(function() {
     alert('you changed something');
});
});
</script>
</
head>
<body>
    <input type="text" /