function clearInput(inputId) { document.getElementById(inputId).value = ''; }; function focusInput(inputId) { document.getElementById(inputId).focus(); }; window.onload = function() { inputId = "membre_id"; clearInput(inputId); focusInput(inputId); };