How to Use JavaScript

Contact Form with AJAX jQuery Bootstrap PHP and MySql

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

Use Javascript To Type Out Text On Webpage One Letter At A Time

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

JavaScript Buttons onClick Event getElementById

JavaScript Buttons onClick Event getElementById

In this tutorial we are going to use JavaScript Buttons onClick Event getElementById. First thing to know is that we can give any HTML element an id. Here are some examples, we are giving every one of the HTML elements an id of test. [code]<div id=”test”></div>[/code] [code]<h2 id=”test”></h2>[/code] [code]<p id=”test”></p>[/code] [code]<body id=”test”></body>[/code] We can target Read More