vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Constant 'Expand Message Area'

Constant 'Expand Message Area' - Posted By Michael (wrighty) on 24th Mar 08 at 11:22pm
This will make it so that you can continue to Expand the posting area as many times as you want, instead of the default of just once.

It will expand by the same about all of the time! {Smile}


<script>
/*Consistant 'Expand Message Area'*/

if(get('message_field','id')){
    get('message_field','id').getElementsByTagName('div')[0].onclick = function(){
        document.post_form.message.rows = parseInt(document.post_form.message.rows + 8);
    };
}
</script>


Global Footer