This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/scripts/execute-function/calculateAge_DOM.js

7 lines
244 B
JavaScript

import { calculateAge } from '../functions/fonctions_principales/calculateAge_Function.js';
$(function () {
$("#birthDateValue").bind("keyup change", () => {
$('.results').html(calculateAge($('#birthDateValue').val()));
});
});