Hola necesito limpiar el valor de un campo Texarea luego de hacer un Ajax.request con el contenido de dicho Texarea aqui el codigo que tengo ahora.
Código PHP:
function send_reply(id_post,user_account,reply_text,id_div){
id_post = document.getElementById(id_post).value;
user_account = document.getElementById(user_account).value;
reply_text = document.getElementById(reply_text).value;
// alert(' post ID->'+id_post +'\n User Account ID->'+user_account+'\n Reply text->'+ reply_text + '\n Ajax Div->'+ id_div);
new Ajax.Updater(id_div,'wallpost.php?type=reply&id_post='+id_post+'&user_account='+user_account+'&reply_text='+ reply_text+'',
{
method: 'get',
onSucces: function() { $(id_div).reset() },
onFailure: function() { alert('Oops! something went wrong... and your reply could not be delivered')}
});
Necesito que en el onSucces: coja el ID del elemento y le cambie el valor a vacio intente con
document.getElementById(id_div).value = '' // pero tampoco me funciono
alguien sabe?
Gracias por su pronta respuesta..