Category: JavaScript
-
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 jQuery or JavaScript in PHP, Hide or Show a DIV
How to use jQuery or JavaScript in PHP Some time we have a such type of logic in which we want to use jQuery within PHP code. It is very useful and sometime you can perform a very difficult task by using jQuery and PHP in no time. Here i am using jQuery/JavaScript code for…
-
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…