Focus and Blur event on DIV element

Focus and Blur event on DIV element

Hi, I want to handle focus and blur events on any DIV element but don't know how? Any ideas?

I tried this one:

  1. $('.myDIV').bind('focus',function(event){
  2.       // something
  3. });

but it doesn't work!