Problem with unbind (to bind again)

Problem with unbind (to bind again)

Hi all,

I have a problem with unbind/bind.

My code is something like
  1. $(document).ready(function(){
  2.       $("#icon_left").click(function(){
  3.             $('#icon_left').unbind('click'); //This works ok, here I prevent the user clicks while I'm executing some instructions
  4.            
  5.             //A lot of stuff
  6.             ...
  7.             ...

  8.             //now the user should be able to click again
  9.             $('#icon_left').bind('click'); //Unfortunatelly, I can't click :S
  10.       });
  11. });
I have no idea about why it happens...

Thanks a lot for your help!