$('input[name="score"]').prop('type', 'text');
$('input[name="score"]').attr('type', 'text');
let inputs = document.getElementsByName('score');
let i = 0;
for (i = 0; i < inputs.length; ++i) {
inputs[i].type = 'text';
console.log('Input number is ' + i);
}
inputs[i].setAttribute('type', 'text');
$('input[name="score"]').each(function(el){
$(this).attr("type", "text");
});