a mini social media app for small communities
at main 384 B view raw
1// this script is used to provide character counters to textareas 2 3const add_character_counter = (textarea_id, p_id, max_len) => { 4 const textarea = document.getElementById(textarea_id) 5 const p = document.getElementById(p_id) 6 textarea.addEventListener('input', () => { 7 p.innerText = textarea.value.length + '/' + max_len 8 }) 9 p.innerText = textarea.value.length + '/' + max_len 10}