cuisine/scripts/sAccueil.js

9 lines
283 B
JavaScript
Raw Normal View History

import * as fonc from "./fonctions.js";
window.onload = function(){
var iRechercheIngredients = document.getElementById('rechercheIngredients');
var ldIngredients = document.getElementsByClassName('divIngredient');
fonc.setEventSample(iRechercheIngredients, ldIngredients);
}