<select id="developer"> <option value="0">Select Developer</option> <option title="Todd" value="1">Todd Sharp</option> <option title="Brian" value="2">Brian Meloche</option> <option title="Ray Second" value="3">Ray Camden</option> </select>
I can get the selected choice's value with below.
var deger=$('select[name=developer]:selected').val();
But how can i get the "title"'s value?