Logre hacerlo! Pero en IE no funciona...
Código HTML :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>jQuery Tooltip Plugin Demo</title>
<link rel="stylesheet" href="css/jquery.tooltip.css" />
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.tooltip.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("option").tooltip({
left: 100
});
});
</script>
</head>
<body>
<div id="main">
<select>
<option title="TEXTO 1 TEXTO 1 TEXTO 1 TEXTO 1 TEXTO 1 ">1. option</option>
<option title="TEXTO 2 TEXTO 2 TEXTO 2 TEXTO 2 TEXTO 2 ">2. option</option>
<option title="TEXTO 3 TEXTO 3 TEXTO 3 TEXTO 3 TEXTO 3 ">3. option</option>
</select>
</div>
</body>
</html>
Alguien me podria ayudar?
Saludos!