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.

有帮助吗?

解决方案

Use the title property. No scripts required:

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

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top