I have a text input with below code snip
<div id="related_inputs" class="related-items-actions-inner">
<label>id: </label>
<input type="text">
</div>
It does not contain any name for this text input. The above one is complete code.
I want to fix the value for this text box to 12345 so that always by default this text box will have same value if user is not specifically providing any input.
Any help how I can make input value as a static default.
<div id="related_inputs" class="related-items-actions-inner">
<label>id: </label>
<input type="text">
</div>
It does not contain any name for this text input. The above one is complete code.
I want to fix the value for this text box to 12345 so that always by default this text box will have same value if user is not specifically providing any input.
Any help how I can make input value as a static default.