I would like to change the text of "n elements" displayed by iOS for several selection inputs, for example, such as "n shirts".
I'm not sure if this is currently possible, but I would like to know in any case.
I assume that you are talking about showing different things on a website if the user is on an iOS device compared to a computer? You can always make a multimedia request to find out the size of the device, and then display the different inputs by setting the display property to none.
I assume that you want to change the dropdown menu label for the form. This can be easily done using the <label> tag immediately before the <select> . An example is as follows:
<label>
<select>
<form> <label>n Shirt types</label> <select> <option>1</option> <option>2</option> </select> </form>