Submit Form via AJAX in JQuery

Generally, the form is submitted to the server using a specified URL in the action attribute but this method refreshes the web page. So whenever you need to submit a form without reloading the page then you can use AJAX upload using jQuery. The jQuery submit() method is useful to handle the form submission process

Learn More

Form Validation using jQuery Validate plugin

Data validation before posting to a server is an important essential part of web development. In the front-end, there are many options available to validate user input like custom validation, validation with a required attribute, or using a library for validation. There are many libraries or plugins available to perform front-end validation in jQuery. The

Learn More

Disable Weekends in jQuery Datepicker

In web development, taking date input from users commonly occurs. The jQuery Date picker provides an excellent user interface and user experience. It also provides many functionalities like start date, end date, format date for user display and more. While taking date input sometimes we need to skip some dates or need to force a

Learn More

Get Value of Selected Radio Button in jQuery

While working with forms, sometimes we need to get some specific input like gender or name prefix then the radio button is an idle choice for that input. Generally, radio buttons are used for user selection from per-defined values. For example, On the registration page, gender is commonly used to determine the gender of the

Learn More