Category: HTML

  • HTML tag label is useful for Radio buttons

    To click on a Radio button is very boring things to me. A radio button is maximum 15 x 15 pixels. So need extra care to click on Radio buttons. When I work with Radio buttons in my web applications, I use HTML tag – ‘Label‘. For example, I have a Radio button like this-…

  • HTML form :: difference between disabled and readonly element

    I was working with HTML forms. In the forms I used readonly and disabled input elements. What is the deference between these two attributes of input element? Say for I have an input element in HTML form. If we set the attribute readonly=”readonly” then the input element is not editable. This attribute allows the user…

  • Submit HTML form to pop up window

    Some times we may need to submit HTML form to a pop up window. Let’s take a look into the details. For example I have a HTML form. We may submit this form to a blank window by setting target=”_blank”, but when we need to submit the form to a pop up window then we…