The Browser Object Model (BOM) is the way for JavaScript to interact with the web browser. There are no official standards for BOM, but most browsers support common interfaces.
Continue reading “[JavaScript] Brower Object Model (BOM)”Tag Archives: JavaScript
[JavaScript] Built-in Libraries
JavaScript provides ready-to-use objects and functions. Also the good news is that the new versions of JavaScript (ECMAScript 5 and later) add more functionalities.
- Array
- Regex
- Timer
[JavaScript] this
The “this” object is pretty familiar to the C# developers. It refers to the current object. The “this” keyword is also used in JavaScript, but you need to be careful to use it properly.
Continue reading “[JavaScript] this”[JavaScript] Events
Events and handlers are the basic programming model of JavaScript in web browsers. JavaScript has been evolved to provide native support for handling events, and all modern browsers support the features.
Continue reading “[JavaScript] Events”[JavaScript] Functions
In JavaScript, a function is really a unique feature. In general, you can use it as a global module. Define it and use it anywhere you want. But JavaScript functions are much more than that. Let’s find out what they are.
Continue reading “[JavaScript] Functions”[JavaScript] Script & Types
This post deals with basic JavaScript features: Types, Values, and Scripting.
Continue reading “[JavaScript] Script & Types”[JavaScript] Overview
JavaScript is the de-facto standard scripting language for the web. It has had ups and downs (loved and hated) in its history, though. With the advent of AJAX and HTML5, JavaScript becomes a must for all web developers.
Continue reading “[JavaScript] Overview”