focus whole html excepts 1 element

focus whole html excepts 1 element

I currently have the following code: But when i press the select (dropdown menu) de inputfield description gets focused too.

  1. $('html:not(select)').click(function(){
  2.       $('input[name=description]').focus();
  3. });
This also didn't work:
  1. $('html').not('select').click(function(){
  2.       $('input[name=description]').focus();
  3. });