Hi,
Code below doesn't add new innerHTML into table cell. When it adds it should run other (slideOther.js) file but, doesn't work.
Thanks
<html>
<head>
<script type="text/javascript">
function startSlide() {
el=document.getElementById('productsBigCell');
el.innerHTML='<script>var slide1foldername="";</script><script src="slideOther.js" type="text/javascript"></script>';
}
<script>
</head>
<body onLoad="startSlide();">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="productsBigCell" colspan="5"> </td>
</tr>
</table>
</body
</html>