Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

User Defined Objects

Suryateja Pericherla Categories: Javascript. No Comments on User Defined Objects

Creation and Manipulation of User Defined Objects   An object is a real world entity that contains properties and behaviour. Properties are implemented as identifiers and behaviour is implemented using a set of methods.   An object in JavaScript doesn’t contain any predefined type. In JavaScript the new operator is used to create a blank […]

Read the rest of this entry »

Input and Output

Suryateja Pericherla Categories: Javascript. No Comments on Input and Output

Input and Output in JavaScript   JavaScript models the HTML/XHTML document as the document object and the browser window which displays the HTML/XHTML document as the window object. The document object contains a method named write to output text and data on to the document as shown below: document.write(“Welcome to JavaScript”);   To display multiple […]

Read the rest of this entry »

Type Conversion in JavaScript

Suryateja Pericherla Categories: Javascript. No Comments on Type Conversion in JavaScript

Introduction   The mechanism of converting a value or variable from one type to another type is known as type conversion. There two types of type conversion: implicit type conversion and explicit type conversion.   Implicit Type Conversion   Type conversion which is performed automatically by the JavaScript interpreter is known as implicit type conversion […]

Read the rest of this entry »

Document Object Model

Suryateja Pericherla Categories: Javascript. No Comments on Document Object Model

Introduction   DHTML (Dynamic HTML) is not a new language. It is a combination of existing technologies like HTML, CSS, Javascript and DOM. Document Object Model (DOM) is a platform independent and language independent mechanism or API which allows the developer to implement dynamism into the web pages.   DOM represents the web page as […]

Read the rest of this entry »

Built in objects in javascript

Suryateja Pericherla Categories: Javascript. No Comments on Built in objects in javascript

In this article we will learn about built in objects in JavaScript like Array, Date, Math, String and Number and the methods in them.   Introduction   To solve different kinds of problems, JavaScript provides various built-in objects. Each object contains properties and methods. Some of the built-in objects in Javascript are: Array Date Math […]

Read the rest of this entry »

Event Handling in Javascript

Suryateja Pericherla Categories: Javascript. No Comments on Event Handling in Javascript

The programming which allows computations based on the activities in a browser or by the activities performed by the user on the elements in a document is known as event-driven programming. Let’s learn about event handling in JavaScript.   An event is the specification (essentially an object created by the browser and JavaScript) of something […]

Read the rest of this entry »