Refers to the element that contains the current attribute object. Until a newly created attribute is inserted into an element, this property is null.
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
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
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
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
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
Returns a comma-delimited string of values, theoretically in a format tailored to the language and customs of the browser's default language. Implem
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
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
Returns an array that is a subset of contiguous items from the main array. Parameters determine where the selection begins and ends.
Returns the value of the first item in an array and removes it from the array. The length of the array decreases by one.
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
Appends one or more items to the end of an array. The length of the array increases by one.
Returns the value of the last item in an array and removes it from the array. The length of the array decreases by one.
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