0 pratik posted how to make un editable to input text in html ? i want to make total amount un editable by the user but only jQuery and Javascript can do it . <input type="text" class="form-control" name="total_amount" placeholder="Total Amount"> Edit Question
0 Mitul Dabhi answered Nov 30 '-1 00:00 use disabled property of input like below <input type="text" class="form-control" disabled="true" name="total_amount" placeholder="Total Amount"> Edit Answer