- Joined
- Aug 16, 2022
- Messages
- 52
- Reaction score
- 2
Hi Everybody,
I have a text input on my form. Using the autofocus feature, this input is almost ready for input except that; the user must mouse-click inside the input box to activate their keyboard input.
Visitors can not just go ahead and enter their information. Can I change that? What do I refer to?
I have a text input on my form. Using the autofocus feature, this input is almost ready for input except that; the user must mouse-click inside the input box to activate their keyboard input.
HTML:
<div class="input-group">
<span class="input-group-text"><i class="bi-person-fill" arial-hidden="true"></i> </span>
<input type="text" class="form-control" placeholder="Enter Your User Name" id="uName" name="uName" required="required" autofocus>
</div>
Visitors can not just go ahead and enter their information. Can I change that? What do I refer to?