What is JSON? JSON (Javascript Object Notation) is a light weight data interchange format. JSON is a subset of the literal object notation in JavaScript. It can be compared to XML but parsing of JSON is very much easier than XML data. It is a text format of data and is programming language independent. In [...]

Dojo is the Open Source JavaScript Toolkit. It is tool for constructing dynamic web user interfaces. Dojo offers various widgets, utilities, higher IO (AJAX) abstraction etc.It is based on HTML and javascript. Dojo ups abstraction layer in a higher level. Dojo is sometimes advertised as AJAX framework. It is able to make AJAX requests with [...]

Coding in JavaScript is always cumbersome.Programmer always find difficult debugging in JavaScript.There is one IDE which help javascript programmer.That is Aptana Studio. Aptana Studio is an open source integrated development environment (IDE) for building Ajax web applications. It includes support for JavaScript, HTML, DOM, and CSS with code-completion, outlining, JavaScript debugging, error and warning notification [...]

I am trying to learn javascript.there is some more exmaple, which can help for beginner in java script.In this first exmaple.We are creating an Html page.In this we are writing a funtion named RandomNumber which will generate random number.I am taking sine from it and take the absolute value. This will get a number between [...]

Extjs is mainly used for UI design.Today I will create a simple form using this.And I will explain code also. So that any beginner can understand easily. After writing this code Form would be looking like below example Ext.onReady(function(){ —– This function provides a way to make our code wait until the DOM is available, [...]

While skimming the internet and searching for good learning resources for jQuery i found amazing links which can help anybody using or learning jQuery. Below are the 10 very useful resource’s list. I hope it will be helpful to others. Let’s start of with the link which can give us head start to our jQuery [...]

jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. jQuery is an amazing JavaScript library that makes it easy to create wonderful web effects in just a few lines of code. jQuery is a new type of Javascript library. It is not a huge, bloated framework promising the best in AJAX [...]

Well the task is to create a vertical text scroller. It can be done using the javascript code. Let me explain the process: First of all lets make the form scrolling. So,In the html form do the following add the following attributes to the body tag onMouseover=”scrollspeed=0″ onMouseout=”scrollspeed=current” OnLoad=”NewsScrollStart();” And the javascript functions used above [...]