blur input and live

blur input and live

Hi everyone,

I have to do that :
$('*:not('+my_input+')').live('click',function(){
   alert("ok");
})

but it's not working, I still have a "ok" when I click on my input.

This works fine :
$(my_input).live('click',function(){
   alert("ok");
})

$('*').live('click',function(){
   alert("ok");
})


Thanks in advance for your help !