Buy me a Coffee
Web 2.0 Training
 
headermask image

Random Header :: Unpredictably Exciting

Author Archives: Rochak Chauhan

Microsoft Surface

Microsoft Surface (Codename: Milan), is a forthcoming product from Microsoft which is developed as a software and hardware combination technology that allows a user, or multiple users, to manipulate digital content by the use of natural motions, hand gestures, or physical objects, similar to the futuristic computer screens portrayed in Minority Report. It was announced [...]

A simple shortcut in Javascript !

document.getElementById(‘id_of_element’).value How many of you tried to use this JavaScript’s case sensitive way to access an element ? Have you ever wished for a smaller code to access the element ? If yes… I am here to grant your wish with this simple function. Just add the following line on the top of your JavaScript [...]

What is AJAX and Why should I use it?

Whats Ajax ? AJAX stands for “Asynchronous JavaScript and XML”, but something tells me you already know that and want to know in layman’s terms. Alright, AJAX is not a Programming Language nor it is a new Technology as many of us believes it to be. AJAX is nothing but a methodology based on Javascript,XML, [...]

Why does Bush hates Bin ladin?

Here is why … USA supported Bin Laden and the Taliban for years, and viewed them as freedom fighters against the Russians. As late as 1998, the US was paying the salary of every single Taliban official in Afghanistan. There is more oil and gas in the Caspian Sea, but you need a pipeline through [...]

How to make an AJAX Call?

So not you know What is Ajax and Why should you use it, now I’ll teach you how to make an AJAX call. There are three simple steps to achieve that: 1) Create and AJAX Object: function createAjaxObject() { //Code for Mozilla if (window.XMLHttpRequest) { return new XMLHttpRequest() } //Code for IE else if (window.ActiveXObject) [...]