bbs_w_post.js 439 B

1234567891011121314
  1. function opennamu_change_comment(get_id) {
  2. const input = document.querySelector('#opennamu_comment_select');
  3. if(input !== null) {
  4. input.value = get_id;
  5. document.getElementById('opennamu_edit_textarea')?.focus();
  6. }
  7. }
  8. function opennamu_return_comment() {
  9. const input = document.querySelector('#opennamu_comment_select');
  10. if(input !== null) {
  11. document.getElementById(input.value)?.focus();
  12. }
  13. }