Hello!
I am using the following code to cycle through the objects in an array I have established:
function listGlosNames(obj) {
var names = "";
for(var i in obj) names += "<a href='test.htm?key=" + i + "'>" + i + "</a><br>";
document.write(names);
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.