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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 thatposition: relative.Edit: See http://jsfiddle.net/dloewen/Ny9We/2/ for a working example.