elements on the
page. In other words, $("p") returns a collection of paragraphs in the document. Then, the
each() method will apply a function to each item in the collection (in this case, the innerHTML
of each paragraph tag will be replaced with the string).
You can create your own example now that will parse through your own special array:
function SpecialArray(arr)
{
this.
Pages:
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136