Im generating a GridView with some links, when the link is clicked it runs the following javascript function
the problem is, the loop is only finding 4 elements - the elements that asp.net generates:
and no other items on the page. Perhaps this is an error in my logic, but what Im trying to do is loop through the tables created, and if an item (a <tr>) has a class with a certain name, I need to do some processing on the class name. This part I have working, it's just I might be using the wrong javascript function to look at everything... but I looked at the MSDN library and it said searching using the form elements works for everything but image elements.
Can anyone point me in the right direction?
thanks!
Code:
function changeElementStyleOn(elementName, styleName)
{
for (i=0; i < document.form1.elements.length; i++)
{
// do some stuff, window.alert is for testing
window.alert(document.form1.elements[i].name);
}
}
the problem is, the loop is only finding 4 elements - the elements that asp.net generates:
Code:
<form name="form1" method="post" action="Default.aspx" id="form1">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value=""/>
</div>
and no other items on the page. Perhaps this is an error in my logic, but what Im trying to do is loop through the tables created, and if an item (a <tr>) has a class with a certain name, I need to do some processing on the class name. This part I have working, it's just I might be using the wrong javascript function to look at everything... but I looked at the MSDN library and it said searching using the form elements works for everything but image elements.
Can anyone point me in the right direction?
thanks!