|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
1 |
scroll_active = true;
|
|
|
2 |
function empty_field_and_submit() {
|
|
|
3 |
var cf = document.getElementById('sendform');
|
|
|
4 |
var inpf = document.getElementById('inputform');
|
|
|
5 |
cf.chat_msgidnr.value = parseInt(cf.chat_msgidnr.value) + 1;
|
|
|
6 |
cf.chat_message.value = inpf.chat_message.value;
|
|
|
7 |
inpf.chat_message.value = '';
|
|
|
8 |
cf.submit();
|
|
|
9 |
inpf.chat_message.focus();
|
|
|
10 |
return false;
|
|
|
11 |
}
|
|
|
12 |
function setfocus() {
|
|
|
13 |
document.getElementsByName("chat_message")[0].focus();
|
|
|
14 |
}
|