ajax succes function not called?

ajax succes function not called?

Hi,
 
I have this very simple function:
 
function del(id)
{
$.ajax({ url: 'del.php?id=' + id, succes:function() { alert('hi'); } });
}



and the alert is not shown. I don't understand why. del.php is just a small query and is executed allright.
 
Thanks.