Category Archives: JavaScript

How to Use JavaScript

JavaScript is a popular programming language used for creating interactive and dynamic websites. It is a client-side language, meaning that it runs in a user’s web browser rather than on a web server.

JavaScript allows developers to add dynamic functionality to web pages, such as pop-ups, form validations, and interactive elements like sliders and dropdown menus. It also enables the creation of complex web applications and games.

One of the benefits of JavaScript is that it is supported by all major web browsers, including Google Chrome, Firefox, Safari, and Microsoft Edge. This makes it a versatile and widely-used language for web development.

In addition, JavaScript frameworks and libraries like React, Angular, and jQuery have been developed to simplify the process of building complex web applications. These frameworks provide pre-built components and functionalities, allowing developers to build high-quality web applications more efficiently.

Overall, JavaScript is a powerful and essential tool for web development, enabling developers to create engaging and interactive web applications and improve the user experience.

JavaScript If Else Statements for Absolute Beginners

Many times in programming we have to check to see if a condition is met and then display a result of some sort. This is where the if else statements come in handy with JavaScript. For instance lets say that you wanted to display something on a certain date. Maybe on New Years Day you Read More

a1-tutorial-javascript-absolute-beginner-web-development

If you are an absolute beginner in web development you must be aware that JavaScript is essential. We are going to break it down for you in the simplest of terms. So if you are a beginner this lesson is for you. This is going to be fun! Document Object Model Document Object Model (DOM) Read More

Lost Password Script AJAX jQuery Bootstrap PHP and MySql

This is a lost password script tutorial. I write it in AJAX, JQuery, Bootstrap, PHP and MySQL. People frequently lose their passwords. Password reset scripts are almost mandatory, with people expecting software to do everything for them. Writing scripts that let people reset their passwords do pose some risks. Are they using a secure email Read More

Contact Form with AJAX jQuery Bootstrap PHP and MySql

In this tutorial we create a contact form that enters contact information into a database. It will then send an email to you from your website. We do this with AJAX, jQuery, Bootstrap, PHP and MySql. https://youtu.be/y4M_u–t5YA AJAX jQuery Functions Used ready() function to check the readiness of the DOM {Document Object Model} click() function Read More

Login Script with AJAX jQuery PHP and MySql

Let’s create a login script with AJAX JQuery, PHP and MySQL in this tutorial. We will create a form to login to the system and use AJAX with JQuery for the process. Next we will use PHP to process the form and return data to the webpage without reloading. Then we will set session variables Read More

Create Secure Password Sign Up Script With PHP jQuery and AJAX

Create a secure password sign up script with PHP, jQuery and AJAX with this easy to follow tutorial. Preliminary steps for this tutorial is to go over the last post Create A Database and Table At The Same Time With PHP. If you are already familiar with creating database tables this is the structure for the database Read More

jQuery Ajax Form Submit With PHP Processing

In this tutorial we will be submitting a form using AJAX with jQuery to PHP. What you need to understand is the jQuery is shorthand for JavaScript. jQuery has a bunch of JavaScript functions that make it shorter to call in when coding.  This particular tutorial is related to our other post in JavaScript Best Ajax Tutorial Read More

AJAX Raw Or With jQuery Whats The Difference

The difference between AJAX raw and AJAX with jQuery is a matter of personal preference really. When you program with raw JavaScript you do not have to worry about bringing in external libraries. When you program AJAX with jQuery then you must bring in the external libraries. On the other hand jQuery syntax is easier Read More

Ajax With Multiple Forms And One PHP Processing File

You only need to have one processing file in PHP when you are working with AJAX. If you have more than one processing file for every from you create you are wasting your time. This will make your programming less confusing. Lets dive into how using one processing form in PHP is more efficient. Previous Lessons Read More

use-javascript-to-type-out-text-on-webpage

In this tutorial we show you how to type one letter at a time in you webpage with JavaScript. We make use of JavaScript functions to accomplish this tasks. JavaScript Functions For Typing Animation split(“”) The split function will create an array from our string. shift() The shift function will shift the string one letter at a time. Read More

Change Color On A Webpage With Ajax

You can change a color on a web page with ajax. In this tutorial we make use of the HTML input type of color. We then generate an Ajax request to the processor. This in turn returns CSS code that changes the color on the webpage. To see how this is done watch the video. Read More

Ajax How To Process More Than One Form Item

In this Ajax tutorial, you will learn how to process more than one form item. Ajax is very fast and can retrieve data in a split second. In the last ajax tutorial we showed you how to process one form item. Usually when you need a form on a web page, you need to process Read More

best-ajax-tutorial simple and easy to understand

This is the best Ajax tutorial. Learn how to submit a form without reloading a page. Ajax can do that for you. Here is a very simple tutorial with the code that will help you get started using Ajax in your applications. The XMLHttpRequest Object The XMLHttpRequest object can be used to request data from Read More

How to Use JavaScript

Here is a little JavaScript true or false script that you can have some fun with. You can even develop further intricate programs off of this little script here. Enjoy! https://www.youtube.com/watch?v=2pr3V55nP2Y&feature=youtu.be [code]<html> <head> <title>Quiz</title> </head> <body> <h1>Quiz</h1> <div id="question">True or False: The sky is blue?</div> <button onclick="truee()">True</button> <button onclick="falsee()">False</button> <script> function truee(){ document.getElementById(‘question’).innerHTML="That is correct"; Read More

how to enable JavaScript in Firefox browser JavaScript tutorial

Have you visited a domain website that seems to be broken with no style or design? When visiting a web page which appears to be broken down into basic text links you may find that your JavaScript is disabled in Firefox. No problem! To fix this easily, follow the steps below to update your JavaScript Read More