Reputation:
I want to pop up text below a table say 30px when the mouse moves over a cell. Now I can append it below the body not the table. Here is the example.
Thanks for help.
Upvotes: 0
Views: 55
Reputation: 4211
Simple use .insertAfter()
UPDATE
example html
<table id="thisTable"></table>
js
.insertAfter('#thisTable');
Upvotes: 1
Reputation: 2835
Use absolute positioning & figure out where to put it dynamically.
Re-reading the question, this isn't what you asked for. Maybe it is what you want.
Upvotes: 0