[jQuery] How to manipulate with new class name?

[jQuery] How to manipulate with new class name?


Here is my code:
<script type="text/javascript">
$(document).ready(function(){
// edit
$('.edit').click(function(){
    alert('Edit');
    $(this).removeClass().addClass('save');
    return false;
});
// save
$('.save').click(function()
{
    alert('Save');
    return false;
});
});
</script>
<a href="test.htm" class="edit">Test</a>
It always alert "Edit", but class changed to "save".
How i can get access to element with class "save"?