Appending To onchange Event

Appending To onchange Event

I'm trying to use jQuery to append to the onchange event of each of the following input elements.  The following code actually replaces the event. When the onchange event fires on any of the elements, I get one alert which just says "new".  What I would like to see is 2 alerts, one that says "test?" where ? is the element that changed and another that says "new".

Any help you could provide would be greatly appreciated.


<input type="text" id="testInput1" onchange="alert('test1');" />
<br>
<input type="text" id="testInput2" onchange="alert('test2');" />
<br>
<input type="text" id="testInput3" onchange="alert('test3');" />

<script type="text/javascript" language="javascript">
$(document).ready(function(){
$(":input")
   .attr('onChange', "alert('new');" );
});
</script>