kushagra

  1. krates

    Creating a button to select everything in a text area.

    Here is a simple script sometimes you want to highlight verything in a text field so that the user can copy it or something. script goes here <form> <center> <input type=button value=”Highlight All” onClick=”javascript:this.form.textarea.focus();this.form.textarea.select();”> <br>...
Top Bottom