How to Only Allow Numbers in a Text Box using jQuery

jQuery-Allow-Numbers-and-Decimal-only-in-Textbox

This tutorial explains how to only allow numbers and decimal values in the textbox using jQuery. I have kept this article very simple so that anyone can implement basic validation of entering the numeric values in the textbox on their web page. Best practise is to do validation on both the side .i.e on server-side (Php, […]

How to submit a PHP form using ajax ?

PHP Registration Form with jQuery AJAX

In this article, we will see the use of the AJAX request to submit a form . The form will be submitted by sending the POST request to the server where the data will be stored. In this article, we gave an example registration form for collecting user information. After client-side validation, these form data […]

Check Uncheck All Checkbox using jQuery

Check-Uncheck-All-Checkbox-using-jQuery

In this tutorial, we are going to see how to Check Uncheck All Checkbox using jQuery. We can use this feature in various scenarios like selecting multiple records to perform database update or delete. In this tutorial we have a simple example with less code for obtaining this feature using jQuery. We have used this […]

Getting Checkbox Value in jQuery

getting-checkbox-values-in-jquery

In HTML Form, the dropdown, checkbox type fields have an array of value. In this post, we are going to see how to get the array of selected Checkbox Value in jQuery In this example, we are using jQuery each() to get each checked value in an array. Then this array values will be shown […]

How to Rotate Image using jQuery

image-rotate

In this tutorial, we are going to rotate image using jQuery. In the previous tutorial, we have seen How Can I Generate a Random Alphanumeric String in PHP?. In this image rotation example, we are using jQuery animate function. Using this function we are controlling the image transform property.