Detectar se o texto transbordar: as reticências estão ativas no campo de entrada

Eu estou querendo saber que há uma maneira de detectar setext-overflow:ellipsis está ativo em um campo de entrada para que eu possa mostrar uma dica de ferramenta com o texto completo.

Css:

<code>input[type='text']
{
    text-overflow:ellipsis;
}
</code>

Html:

<code><input type="text" onmouseover="Tooltip.Show(this)" value="some long text" />
</code>

Javascript:

<code>Tooltip.Show = function (input)
{
    // This is where i need the see if the current input show ellipsis.
    if ($(input).isEllipsisActive()) 
    {
        // Show the tooltip
    }
}
</code>

BR
Andreas

questionAnswers(2)

yourAnswerToTheQuestion