Is it possible to increase and decrease the size of the comment box using Javascript?
Is it possible to increase and decrease the size of the comment box using Javascript?
Sure is.
function increaseNotesHeight(thisTextarea, add) {
if (thisTextarea) {
newHeight = parseInt(thisTextarea.style.height) + add;
thisTextarea.style.height = newHeight + "px";
}
}
function decreaseNotesHeight(thisTextarea, subtract) {
if (thisTextarea) {
if ((parseInt(thisTextarea.style.height) - subtract) > 50) {
newHeight = parseInt(thisTextarea.style.height) - subtract;
thisTextarea.style.height = newHeight + "px";
}
else {
newHeight = 50;
thisTextarea.style.height = "50px";
}
}
}
Where do I add that?
This topic has been closed to new replies.