Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/04/2009, 05:50
scorpionhack
 
Fecha de Ingreso: noviembre-2007
Mensajes: 229
Antigüedad: 17 años, 1 mes
Puntos: 0
Respuesta: Acentos en el text input

tengo lo siguiente:

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> 
<meta name="tipo_contenido"  content="text/html;" http-equiv="content-type" charset="utf-8"> 
<script>
 function rempl(texto){
texto=texto.replace(/&oacute;/gi,'ó');

return(texto)
 }

function clickSel(ide){
document.getElementById('filmcategory').value=rempl(document.getElementById(ide).name)
}
</script> 
pero me sigue apareciendo esto: animaci�n

Gracias