入力ボタンのテキストエリアコンテンツをオンクロックで更新したい
例えば:
<input type="button" value="Reply" onclick="update('Ahmed')">
<textarea id="comment_content"></textarea>
//i want set textarea content to @/Ahmed/ onclick on the above button
//example for the javascript function
function update(var){
getElementByID('comment_content') = '@/'.var.'/'
//set the textarea to @/Ahmed/
}
別の質問があります。ボタンをクリックして、ページの最後(new_comment div)にユーザーを送信します。
jqueryではなくjavascriptコードが欲しい