Pergunta

i have created dynamic table that contains dynamic data. i want to show some text as short-info [title] when someone move cursor to any <td>. any idea ??? enter image description here Its sample table containing divs.

Foi útil?

Solução

Use the title property. No scripts required:

<table>
    <tr>
        <td title="foo">foo</td>
    </tr>
</table>

http://jsfiddle.net/filur/87XHh/

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top