javascript Attr ownerElement

Refers to the element that contains the current attribute object. Until a newly created attribute is inserted into an element, this property is null.

javascript Attr name

This is the name portion of the name/value pair of the attribute. It is identical to the nodeName property of the Attr node. You may not modify

javascript Attr expando

Returns Boolean true if the attribute, once it is inserted into an element, is not one of the native attributes for the element. This property is

javascript Attr Description

An abstract representation of an element's attribute name/value pair is an object known in the W3C DOM vernacular as the Attr object; in IE termin

javascript Array unshift( )

Inserts one or more items at the beginning of an array. The length of the array increases by the number of items added, and the method returns the n

javascript Array toString( )

Returns a comma-delimited string of values, identical to using the Array.join( ) method with a comma parameter. All values are converted to some st

javascript Array toLocaleString( )

Returns a comma-delimited string of values, theoretically in a format tailored to the language and customs of the browser's default language. Implem

javascript Array splice( )

Removes one or more contiguous items from within an array and, optionally, inserts new items in their places. The length of the array adjusts itself

javascript Array sort( )

Sorts the values of the array either by the ASCII value of string versions of each array entry or according to a comparison function of your own des

javascript Array slice( )

Returns an array that is a subset of contiguous items from the main array. Parameters determine where the selection begins and ends.

javascript Array shift( )

Returns the value of the first item in an array and removes it from the array. The length of the array decreases by one.

javascript Array reverse( )

Reverses the order of items in the array and returns a copy of the array in the new order. Not only does the reverse( ) method rearrange the value

javascript Array push( )

Appends one or more items to the end of an array. The length of the array increases by one.

javascript Array pop( )

Returns the value of the last item in an array and removes it from the array. The length of the array decreases by one.

javascript Array join( )

Returns a string consisting of a list of items (as strings) contained by an array. The delimiter character(s) between items is set by the parameter