Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/08/2012, 05:38
ger84
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: funcion que no actualiza el campo style a la primera pero si a la segunda

no debería ser
Código Javascript:
Ver original
  1. function showImg(url){
  2.     var text = "<img src='img/"+url+"'>"
  3.     var img = new Image();
  4.     img.src = 'img/db/'+url;
  5.    
  6.     document.getElementById("marco").innerHTML=text;
  7.     document.getElementById("marco").style.marginLeft="-"+parseInt(img.width)/2;
  8.     document.getElementById("marco").style.marginTop="-"+parseInt(img.height)/2;
  9.     document.getElementById("marco").style.display="block";
  10. }