How can i get the "title"'s value?

How can i get the "title"'s value?

  1. <select id="developer">
  2.       <option value="0">Select Developer</option>
  3.       <option title="Todd" value="1">Todd Sharp</option>
  4.       <option title="Brian" value="2">Brian Meloche</option>
  5.       <option title="Ray Second" value="3">Ray Camden</option>
  6.    </select>

I can get the selected choice's value with below.

  1. var deger=$('select[name=developer]:selected').val();

But how can i get the "title"'s value?