Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

zclip not working inside table

Tags:

jquery

zclip

I put my example code here http://jsfiddle.net/8epWm/2/

I want to enable zClip on an element inside a table and it's not working. Any ideas?

like image 412
kiev Avatar asked Dec 29 '11 21:12

kiev


1 Answers

Table elements have trouble with absolute positioning, and zClip uses absolute positioning to place the flash movie on top of the target element.

To work around this you can wrap a block level element (I used a <div>) around the target element, and give that position: relative.

Edit: See http://jsfiddle.net/dloewen/Ny9We/2/ for a working example.

like image 184
dloewen Avatar answered Nov 16 '22 01:11

dloewen