Built with from Grav and Hugo
//this accepts an array of textbox ids function showMultipleElements(arrInput) { arrInput.forEach(showElementId); function showElementId(item, index) { return $("#" + item ).show(); } }