Soy nuevo en el foro y también con javascript. Tengo el siguiente código:
Cita:
Lo que necesito saber como posicionar el cursor dentro del texto recien agregado o sea la etiqueta de negrita que el cursor quede <html>
<head>
</head>
<body>
<form action = "" method = "" name = "form" >
<textarea id="area" name = "textarea" rows="6" cols="50" onkeypress="onTestChange();">Este es un texto de prueba.</textarea>
</form>
<a href="javascript:addtext('<b></b>');"><b>Negrita</b></a>
<script>
function addtext ( text ) { document. form . textarea . value = document. form . textarea . value += text;
}
</script>
</body>
</html>
<head>
</head>
<body>
<form action = "" method = "" name = "form" >
<textarea id="area" name = "textarea" rows="6" cols="50" onkeypress="onTestChange();">Este es un texto de prueba.</textarea>
</form>
<a href="javascript:addtext('<b></b>');"><b>Negrita</b></a>
<script>
function addtext ( text ) { document. form . textarea . value = document. form . textarea . value += text;
}
</script>
</body>
</html>
Cita:
. Intente usar focus() y también vi ejemplos en post relacionados y utilice cada una de las respuestas. Pero no tuve éxito. Cualquier guía o data seria de gran ayuda. <b>"Aqui"</b>
Muchas Gracias!!