loading............
pues lo haces mal, tienes errores de concatenación... si vas a usar un string directamente así.
Código PHP:
function traduccion(){
var nuevoP = document.createElement("p");
var texto = document.createTextNode("Pel.lícula: EL NOM DE LA ROSA\
Títól original: \"Le nom de la rose\"\
Any:1986\
Duració:131 min.\
País:Francia\
Director:Jean-Jacques Annaud\
Repartiment:Sean Connery, Christian Slater, F. Murray Abraham, Michel Lanslate, Valentina Vargas, Ron Perlman.\
Producció:Coproduccion con Francia-Italia-Alemania.\
Gènere:Intriga a la edat mitja\
")
//así en cada FIN DE LINEA LE PONES un -> \ <-
nuevoP.appendChild(text);
var anteriorP=document.body.getElementsByTagName("p")[0];
anteriorP.parentNode.replaceChild(nuevoP, anteriorP);
}
connection closed.