bottin-ag/webcontent/js/membreid-selected-and-cleared.js
2023-09-17 16:32:40 -04:00

14 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);
};