"Read only And disabled" input type value

                    Diffenece Between Read only And disabled input type value's

Hello.. friends today i wann show you the difference between Read only input and Input type disabled.

Read only value = by this value we just able to read the content. we can not change it at all.

  <input type="text" value="you Can not change me"  readonly="readonly"/>

Disabled value = if we use input type value disabled then we would not able to click on the content of input.
 this kind of property only for just view the input

  <input type="text" value="you not able to click me" disabled="disabled" >

Thanks..
Emraan Ali

Comments

Popular posts from this blog