OG Solution

Learning the Web Lingo

Archive for the ‘Javascript’ Category

Aug
27

Overview:
This screencast is going to look at the onmouseover event handler. This event handler executes JavaScript code when the user moves the mouse over the HTML element that is setup with this event handler.

 

Aug
14

Overview:
This screencast is going to look at the onclick event handler. This event handler executes JavaScript code when the user clicks on the HTML element that is setup with this event handler.

 

Jul
31

Overview:
When you’re coding JavaScript, you are building functions that respond to user actions (which is also known as events) on your webpage. Therefore, event is the driving force for JavaScript to work. This screencast is going to look at events in general.

 

Jul
23

Overview:
This screencast is going to talk about attaching external JavaScript files to your HTML document. You can put your common JavaScript code in a separate JavaScript document so you can link to this JavaScript file from all your HTML page. This way, you can reuse your code over an over again.

 

Jul
16

Overview:
This screencast is going to talk about JavaScript’s alert method. This built-in function will pop up a text display box. This alert box’s main purpose is to show information but if you use it wisely it becomes very useful in many ways.