bottin-ag/webcontent/js/membreid-selected-and-cleared.js

15 lines
265 B
JavaScript
Raw Permalink Normal View History

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