Click Here To Get Amazing Facebook Profile Covers,Status Messages

Internet

How to use sort function in JavaScript array

An array in JavaScript is collection of elements under a single variable name like in other languages. In JavaScript you can define an array using the following syntax

var arr =new Array(5);

Here arr is name of array and 5 is number of elements in array.

You need array name and index to assign and access array elements. First element is at index 0 and last element is at number of elements minus one position .You have to specify the position of element in bracket to get or set value for that element.


How to iterate through the elements of an array in JavaScript

An array in JavaScript is collection of elements under a single variable name like in other languages. In JavaScript you can define an array using the following syntax

var arr =new Array(5);

Here arr is name of array and 5 is number of elements in array.

You need array name and index to assign and access array elements. First element is at index 0 and last element is at number of elements minus one position .You have to specify the position of element in bracket to get or set value for that element.


How to use an array in JavaScript

An array in JavaScript is collection of elements under a single variable name like in other languages. In JavaScript you can define an array using the following syntax

var arr =new Array(5);

Here arr is name of array and 5 is number of elements in array.

You need array name and index to assign and access array elements. First element is at index 0 and last element is at number of elements minus one position .You have to specify the position of element in bracket to get or set value for that element.
This short example shows how to define and use an array


How to disable autocomplete feature in Firefox

Autocomplete feature available in development environments,web browsers and search engines predicts the word or phrase based on the earlier typed words or phrases or commonly used words or phrases(in search engines).It speeds up the process of filling web forms and in logging-in to sites.As all this information gets stored somewhere.So it is possible for trojans to use this feature to gain access to your sensitive data.This feature is enabled by default in most browsers, but can be disabled.

Here are steps to disable autocomplete feature in Firefox

Open Firefox.


How to disable autocomplete feature in internet explorer

Autocomplete feature available in development environments,web browsers and search engines predicts the word or phrase based on the earlier typed words or phrases or commonly used words or phrases(in search engines).It speeds up the process of filling web forms and in logging-in to sites.As all this information gets stored somewhere.So it is possible for trojans to use this feature to gain access to your sensitive data.This feature is enabled by default in most browsers, but can be disabled.

Here are steps to disable autocomplete feature in internet explorer

Open IE.


Difference between Form submission methods GET and POST

Both Get and Post are used to submit data entered in web forms to the data processing pages.But there is a difeerence in the way these form submission methods work.

When you submit data using GET method the data is appended to URL in key value pairs.So the user can see the dat in URL.Proper encryption should be in place before sending any sensitive data using GET method.


Syndicate content