bug in .find() method ? with select attribute

bug in .find() method ? with select attribute

Hi

i wanna use the find methode..
but some how i get this bug or my mind is on the wrong track at this moment..


  1. <div class="form"><input name="form[check22][]" type="checkbox" value="1000" id="check0" style="display:none;"></div>


error:
  1. var tt= "check22"; jQuery('.form').find('input[name*='+tt);


works:
  1. var tt= "check22"; jQuery('.form input[name*='+tt);