Show Multiple Fields


Show multiple form fields
//this accepts an array of textbox ids
function showMultipleElements(arrInput) {
    arrInput.forEach(showElementId); 
    function showElementId(item, index) {
      return $("#" + item ).show();
    }
}