Login
Preferences
About Trac
Changes between
Version 50
and
Version 51
of
Catalogue
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Jun 27, 2012 12:26:28 AM (
12 years
ago)
Author:
tolix
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Catalogue
v50
v51
24
24
var formId = 'catalogue';
25
25
var form = document.getElementById(formId);
26
for(el in form) {
26
for(var i = 0; i < form.length; i++) {
27
var el = form.elements[i];
27
28
alert(el);
28
29
}