user1108948
user1108948

Reputation:

pop out text below the table or desired place

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

Answers (2)

AbstractChaos
AbstractChaos

Reputation: 4211

Simple use .insertAfter()

fiddle

UPDATE

example html

<table id="thisTable"></table>

js

 .insertAfter('#thisTable');

Upvotes: 1

Julian
Julian

Reputation: 2835

Use absolute positioning & figure out where to put it dynamically.

http://jsfiddle.net/wEFfs/11/

Re-reading the question, this isn't what you asked for. Maybe it is what you want.

Upvotes: 0

Related Questions