El siguiente script inserta texto al final del área de texto. Necesito cambiar a insertar texto después de la posición actual del cursor en el área de texto.Insertar texto después de la posición del cursor en el texto es
jQuery(document).ready(function($){
$('#addCommentImage').click(function(){
var imageLoc = prompt('Enter the Image URL:');
if (imageLoc) {
$('#comment').val($('#comment').val() + '[img]' + imageLoc + '[/img]');
}
return false;
});
});
posible duplicado de [Insertar texto en textarea con jQuery] (http://stackoverflow.com/questions/946534/insert-text-into-textarea-with-jquery) – bummi