jQuery tutorial

Different Ways of Populating HTML Select Options from MySQL Database using PHP, JS, and jQuery Tutorial

Submitted by oretnom23 on

In this tutorial, you will learn how to Populate the HTML's Select box with options from the MySQL Database. The main purpose of this tutorial is to provide the students and beginners with a reference for learning some techniques for building an application using PHP, MySQL DB, JS, and jQuery Library. Here, snippets and scripts are provided to give you a better understanding of the possible ways to achieve the said goal of this tutorial. A sample source code zip file is also provided and is free to download.

Disabling Copy, Cut, Paste, and Context Menu using jQuery Tutorial

Submitted by oretnom23 on

In this tutorial, you will learn how to disable the Copy, Cut, Paste, and ContextMenu functionality of a web application using jQuery Library. The main purpose of this tutorial is to provide the IT/CS students and new programmers with a reference to learn about using some built-in event listeners of a document using jQuery (JS Library). Here, snippets of how to disable the said events are provided and a simple working application source code that demonstrates the objective of this tutorial is provided and is free to download.

3 Ways to Execute PHP Function in JavaScript Tutorial

Submitted by oretnom23 on

Introduction

In this tutorial, I will show you the 3 Different Effective Ways to execute PHP functions in JavaScript. The tutorial aims to provide the students and new programmers a reference to learn to enhance their programming skills using PHP Language and JavaScript. Here, snippets and sample source code will be provided for a better understanding of using the scripts.

Live Form Validation using PHP and Ajax Tutorial

Submitted by oretnom23 on

Introduction

In this tutorial, I will show you how to Create Live Form Validation using PHP and Ajax. You will learn the effective way of validating the input field value of a certain form in your web application. The tutorial aims to provide the students and new programmers a reference for learning and enhancing their programming capabilities using PHP Language and jQuery Library. Here, snippets and sample source code will be provided to have a better understanding of the scripts.

Basic DOM (Document Object Model) Manipulation using jQuery Tutorial

Submitted by oretnom23 on

Introductions

In this tutorial, a will show you how to Manipulate DOM (Document Object Model) using jQuery. You will learn how to use the basic and common jQuery APIs or methods. The tutorial aims to provide the students and new programmers a reference for learning how they can give their better experience for your using their developed web application using DOM Manipulations. Here, snippets and sample source codes are provided to give you more understanding of the scripts.

Discount and Tax Calculator in JS using jQuery Tutorial

Submitted by oretnom23 on

Introduction

In this tutorial, we will tackle How to Calculate the Discount and Tax Amount for your sales transaction feature in your web applications using JavaScript and jQuery Library. This tutorial aims to give IT/CS students or new programmers a reference or guide to learn some new ways or techniques for their future projects.

Return PHP Array as JSON Data in jQuery Ajax Request Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about How to Return PHP Array as JSON Data in Ajax Request. Here, I will show you a way on achieving this goal for your current or future project. I will also provide snippets for this tutorial and a sample source code that demonstrates the idea of this tutorial.

What is Array?

Array is a data structure that contains a collection of elements store at contiguous memory location. Each element of an Array is identified by at least one array index or key.

Populating Table From JSON File using jQuery and Ajax Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about how to Populate HTML Table from JSON File using jQuery and Ajax. This tutorial will teach to populate tables from JSON data using asynchronous HTTP (Ajax) requests. This technique can optimize your application page load by loading the data only when the page or document is ready. You can also refresh or reload the table row items without leaving the page.

How to Limit Data to Display and Load when scrolled to bottom in PHP and jQuery Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about how limit the data to display from database and load automatically when scrolled to bottom using PHP and jQuery. This technique is very useful especially to optimize the speed of loading bulk data. This feature is commonly used in social network sites like the Facebook news feed, it shows limited posts at first and when you reached the bottom of the page, it will automatically load another data. To meet our goal for this tutorial, we will be using MySQL LIMIT and OFFSET Clause.