• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Java Question: For Loop

santana9

Banned
I want the for loop to go to every other element in the form, starting at 2, then to 4, 6, etc.

Here is what I have

for (elem=2;elem<10;elem++2)
{
yemail = document.forms[0].elements[elem];

More code here....


Thanks in advance.
 
Back
Top