make all fields read only in form

Solutions on MaxInterview for make all fields read only in form by the best coders in the world

showing results for - "make all fields read only in form"
Pablo
09 Jan 2017
1<form>
2    <fieldset disabled="disabled">
3        <input type="text" name="something" placeholder="enter some text" />
4        <select>
5            <option value="0" disabled="disabled" selected="selected">select somethihng</option>
6            <option value="1">woot</option>
7            <option value="2">is</option>
8            <option value="3">this</option>
9        </select>
10    </fieldset>
11</form>