jQuery

How to Check Email Availability using jQuery and PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to check the availability of email using jQuery and PHP with MySQLi-OOP. In user registration, we don't want that multiple users have the same email or in short we want the email to be unique to each user. To do so, we use validations to validate an email then we check if the email already exist.

How to Filter Between Two Dates using jQuery with PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a filter between two dates using jQuery with PHP/MySQLi without page refresh. We will be going to display our table then after the filter, the filtered table will be displayed. jQuery is a javascript library that makes you use javascript easily.

Javascript - Simple jQuery Form Validation

Submitted by razormist on
Learn on how to create a Simple jQuery Form Validation using Javascript. This code can be used in validating some forms to prevent errors. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented.

How to Inline Edit Data in Table using PHP and jQuery

Submitted by nurhodelta_17 on
This tutorial tackles how to inline edit data in a table derived from MySQL Table. This means that you are editing the table within the table itself and you don't have to be redirected to a certain edit page. We have used jQuery to make this possible and also to handle our ajax request.

CodeIgniter Ajax File Upload using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles oh how to ajax upload file in CodeIgniter using jQuery. In order for us to send the file via ajax request, where gonna be using FileReader and FormData. File reader reads the selected file then Formdata holds our file for ajax request. We use jQuery for our ajax request which is a javascript library that makes you handle javascript better.

CodeIgniter Ajax Signup with Validation using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a signup/register form in CodeIgniter. We use jQuery to handle our server side signup request. jQuery is a javascript library that makes you use javascript easier. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture.

jQuery Raffle with PHP Array

Submitted by Mr.Niemand03 on
Jquery Raffle with PHP Array Simple random number generation in a loop to simulate a raffle draw. The code uses bootstrap as the main design and to produce modal to show who is the winner. Also it requires jquery to run. You may use Jquery CDN at https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js and Bootstrap CDN at https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css

Toggle Password Visibility using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to toggle password visibility in jQuery. Input type "password" is usually used in forms that hides the text that is being type by the user. In some cases, users wanted to view the text they type to check for typo errors. jQuery is a javascript library that makes it easier for to use javascript.