15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
|
function clearInput(inputId) {
|
||
|
document.getElementById(inputId).value = '';
|
||
|
};
|
||
|
|
||
|
function focusInput(inputId) {
|
||
|
document.getElementById(inputId).focus();
|
||
|
};
|
||
|
|
||
|
window.onload = function() {
|
||
|
inputId = "membre_id";
|
||
|
|
||
|
clearInput(inputId);
|
||
|
focusInput(inputId);
|
||
|
};
|