Event Handling

Event Handling

Introduction to Event Handling ·         Event Handling is a software routine that processes actions, such as keystrokes and mouse movements. ·         It is the receipt of an event at some event handler…
Built-in Objects

Built-in Objects

·         Built-in objects are not related to any Window or DOM object model. ·         These objects are used for simple data processing in the JavaScript. Math Object ·         Math object is a built-in…
Regular Expressions

Regular Expressions

A regular expression is an object that describes a pattern of characters. The JavaScript RegExp class represents regular expressions, and both String and RegExp define methods that use regular expressions to perform powerful pattern-matching…
Limitations of JavaScript

Limitations of JavaScript

We cannot treat JavaScript as a full-fledged programming language. It lacks the following important features − ·        Client-side JavaScript does not allow the reading or writing of files. This has been…
What is JavaScript ?

What is JavaScript ?

JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow client-side script to interact with the user…
Blocks

Blocks

All the HTML elements can be categorized into two categories (a) Block Level Elements (b)Inline Elements. Block Elements Block elements appear on the screen as if they have a line break before and…
Backgrounds

Backgrounds

By default, your webpage background is white in color. You may not like it, but no worries. HTML provides you following two good ways to decorate your webpage background. HTML…