Bueno, me sumergi a probar una cosita a ver si funcionaba.
Antes les explico que el campo de la imagen grande, el ID es img_nota_ppal
Para empezar me decidi solamente a que cambie la imagen
Alguien que me diga si hay algo mal del JavaScript, acalracion: gfx-verita/ es el lugar de la ubicacion de las imagenes de CADA NOTICIA:
Código HTML:
<script type="text/javascript">
function seleccionarNoticia(url,noticia,id_noticia)
{
$('img_nota_ppal').src=url+'/gfx-berita/'+noticia;
for(i=0; i<5; i++)
{
$('noticia'+i).class="notselected";
}
$('id_noticia').class="selected";
}
</script>
Ahora lo que tengo que hacer es a cada TR de cada noticia, darle un id, como dice ahi, asi:
noticia1
noticia2
noticia3
etc...
Codigo del TR de la noticia1:
Código PHP:
<tr id="noticia1" onmouseover="seleccionarNoticia(<?=$urlpath?>, <?=$noticia['foto']?>, noticia1)">
<td width="10" bgcolor="#FFFFFF"><div align="center"><img src="imagenes/barraroja.jpg" width="3" height="42" /></div></td>
<td width="60"><a href="berita.php?view=detail&id=<?=$noticia[0]?>"><a href="berita.php?view=detail&id=<?=$noticia[0]?>"><img src="<?=$urlpath?>/gfx-berita/<?=$noticia['foto']?>" alt="<?=$noticia['judul']?>" width="60" height="42" border="0" align="left"/></a></td>
<td width="10" background="imagenes/fondonoticiachica.jpg"> </td>
<td width="245" background="imagenes/fondonoticiachica.jpg"><table width="100%" height="35" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="sub2 style5"><?=$noticia['subjudul']?> </td>
</tr>
<tr>
<td class="ampliar style5"><span class="style5 ampliar"><strong><span class="style5">
<?=$noticia['judul']?>
</span></strong></span></td>
</tr>
</table></td>
</tr>
Pruebo, paso arriba de la noticia1, y nada.. no cambia, alguien encontro un error ??
Insisto, si alguien tienje otra idea, tire nomas
Graciassssssssss