Viewing 2 replies - 1 through 2 (of 2 total)
  • 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";
    }
    }
    }

    Thread Starter bk

    (@bk)

    Where do I add that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Increase Decrease Size of Comment Box’ is closed to new replies.