Category: HTML

  • Simple Form Validation By jQuery, Inline Form validation jQuery

    Lot of people want form validation by using jQuery. It is very simple to use jQuery and to perform inline form validation. Just follow the following some steps to do this task.  1) Create a form and some of fields  <form id=”buy-house” action=”” method=”post”>     <ul> <li> <input type=”text” name=”First_Name” class=”required” placeholder=”First Name” /></li>…

  • Use Image Instead of Radio Button Html forms

    In one of my project I found a requirment of Images instead of radio button. I saw it first time and get confused and I started thinking what should do and how can i implement it. At last thanks to javascript, Who made me enable to solve this problem. May be you can write a…