This repository has been archived on 2024-10-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
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()));
});
});