does anyone know what level of the Z-INDEX, INCLUDE files are placed?
i have a javascript that places an item on a layer of the Z-INDEX. on the same page is an INCLUDE file that puts a php file in a TD tag like this.
echo"<td>";
include 'file.php';
echo"</td>";
the file works but it is higher than the javascript. i need the javascript that is now on Z-INDEX 20 to be on top.
i have tried changing the Z-INDEX to a higher and lower number but its not working any ideas?