PHP:

PHP: Get Values of Multiple Checked Checkboxes

In this tutorial, our concern is to get values of multiple checked checkboxes using PHP.
Keep Reading

PHP Contact Form with Validation

This tutorial emphasizes on creating a PHP contact form and applying validations and mail() function over it. You can also use it as a feedback form for your website.
Keep Reading

PHP Login Form with Sessions

Session variables are used to store individual client's information on web server for later use, as web server does not know which client's request to be respond because, HTTP address does not maintained state. This tutorial enables you to create sessions in PHP via Login form and web server respond according to his/her request.
Keep Reading

jQuery Mobile Form Example

jQuery mobile is a framework to develop mobile friendly web applications. It contains lot of functions to make user interaction smooth and effective. In this example, we explains how to add jQuery mobile library to your HTML page and create a simple form using it.
Keep Reading

jQuery Ajax Post Data Example

jQuery $.post() method can be used to request data using syntax $.post(URL, data, callback) from one page to another page.
Keep Reading

jQuery Form Submit by Id, Class, Name and Tag

In this jQuery form submit example we'll be going to see, how to submit form programmatically via jQuery codes using form id, class, tag and name individually.
Keep Reading

Enable Disable Submit Button using jQuery

Form data is submitted to server by clicking on Submit button, sometimes user clicks it more than once, which results in multiple form submission to server.  To avoid such anomaly, one of the best solution is to disable the submit button through jQuery. We are covering below two conditions in this tutorial to disable submit button: On page load, Let submit button be disabled by default, when user fills out form completely, it becomes enable. [code lang="js"] // To Disable Submit Button By Default $("input[type=submit]").attr('disabled','disabled'); // When User Fills Out Form Completely $("form").keyup(function(){ $("input[type=submit]").removeAttr('disabled'); }); [/code] Also, disable submit button on its first...
Keep Reading

jQuery Get Value Of Input, Textarea and Radio Button

HTML Forms contains various elements like input fields, options, textarea etc. and for further processing, we need to get value of each field using jQuery. This tutorial, Explains about, how to get input values of different HTML form elements using jQuery as follows: we have taken three form elements in our example - input field, radio button and a textarea. To get value of input field. [code lang="js"]$("input").val();[/code] To get value of Checked Radio Button. [code lang="js"]$("form input[type='radio']:checked").val();[/code] Get value of Radio button with onChange. [code lang="js"]$('input:radio').change(function(){ var value = $("form input[type='radio']:checked").val(); alert("Value of Changed Radio is : " +value); });[/code] To get value of Textarea...
Keep Reading

jQuery Dialog Box Form Example

jQuery has a collection of various user interface interactions, effects and animation in its library. Dialog Box is one of them to interact with user. It consists of a button, some contents or message for user. It may be a draggable window which appears on screen when any event is triggered.
Keep Reading

jQuery Popup Login and Contact Form

Pop up forms are the smart way to present your site. These forms are similar to other forms except, these forms appears abruptly on exact center of screen and requests user to take immediate action over them.
Keep Reading

Create Login Form Using jQuery

This tutorial concerns about creating a login form and validating it using  jQuery. The prestored  username, password are verified from database whether both exist's or not in our database, this is done using PHP script . Here we have created a simple HTML form with two fields- Email and Password. jQuery validation is used for email and password to ensure that they are valid or not . You can download the zip file or simply follow our code and edit it to use. -:See Also:- jQuery Registration Form HTML File: login.html Given below our complete HTML code , copy to use it. [html]<!DOCTYPE html> <html> <head> <title>Login Form Using jQuery - Demo Preview</title> <meta...
Keep Reading

Create Simple Registration Form Using jQuery

Here in this tutorial, we make you learn how to create simple registration form with proper validation using jQuery and database connectivity using PHP.
Keep Reading

Simple jQuery Contact Form with Validation

Contact form comes on first priority for any organisation as this may led to establish one to one communication with their customers. Here in this tutorial, we make you learn how to create simple contact form and applying validation over it using jQuery and PHP.
Keep Reading

jQuery Select Change Event, Get Selected Option

This post will explain you how second select field gets triggered based on selected option from first one using jQuery Select Change event. Lets see how it work.
Keep Reading

jQuery : Select option Tag Common Operations

Here we have used jQuery codes on select option field to get it's selected option value, and to perform various operations like display value, reset field.
Keep Reading

jQuery Datepicker Example

This blog post will guide you how to apply jQuery datepicker in your form with different date formats. All this can be possible just by including jQuery UI to your HTML form.
Keep Reading

Enable/Disable Radio Button Using jQuery

If you want to disable sub-options in a form through radio button then this tutorial will guide you, how to do it using jQuery.
Keep Reading

jQuery Add Option to Select Tag in Form

This blog post demonstrates you to create and manipulate dynamically select option field in form using jQuery.
Keep Reading
‹ 1 … 101 102 103 104 105 … 109 ›
Our Solution
  • Subscription Billing
  • Form Builder
  • Email Marketing
  • Email List Cleaning
Connect With Us
  • Contact Us
  • Careers
Company
  • About Us
  • Privacy Policy
  • Terms and Conditions
  • Affiliate
  • Branding
Resources
  • Blog
  • Blog Categories
  • FormGet Features
  • Email Templates
  • Form Templates
PHP:
Analytics
PHP:

FormGet © 2021. All rights reserved.

Made with love for you