Mi problema es el siguiente: Estoy intentando hacer esto...
Código PHP:
<html>
<head>
<title> Using execCommand to bold text </title>
<script language="JavaScript">
function Init()
{
iView.document.designMode = 'On';
}
function boldIt()
{
iView.document.execCommand('bold', false, null);
}
</script>
<body onLoad="Init()">
<iframe id="iView" style="width: 200px; height:70px"></iframe>
<br><br>
<input type="button" onClick="boldIt()" value="Toggle Bold">
</body>
</html>
1-No me funciona en el firefox (cual puede ser la razon)
2-No soy capaz de conseguir k funcione con un textarea en lugar de con un iframe.
Agradeceria cualquier ayuda o sugerencia de cualquier tipo, gracias por adelantado a tod@s
Agur