Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8714727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:40:03+00:00 2026-06-13T05:40:03+00:00

JSFiddle There’s a simple for loop, can anyone explain to me why isn’t it

  • 0

JSFiddle

There’s a simple for loop, can anyone explain to me why isn’t it working?

Here’s the code (it’s there in the fiddle too)

JS –

var anchors = document.getElementsByTagName('a');

for (var i, anchor; anchor = anchors[i]; i++) {
    console.log('looping');
anchor.addEventListener("click", setNavigation, false);
}​

HTML –

​<a href="#"></a>
<a​​​​​​​​​​​​​​​​​​​​ href="lol"></a>​​​​​​​​​​​​​​​​​​​​​​​​​​
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T05:40:05+00:00Added an answer on June 13, 2026 at 5:40 am

    You forgot to initialize i to the value 0. Use for (var i=0, ….

    Btw, usually you check for i to be smaller than the length of the iterated collection instead of looking for truthy values in the loop-condition. Then you also wouldn’t need that additional variable anchor:

    var anchors = document.getElementsByTagName('a');
    for (var i=0; i<anchors.length; i++) {
        console.log('looping');
        anchors[i].addEventListener("click", setNavigation, false);
    }​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

here is the code: http://jsfiddle.net/duNHJ/2/ Basically there is an animations every div so when
There's a demo here > http://jsfiddle.net/AndyMP/4hzXe/ I can't figure out why the container DIV
Here's my fiddle: http://jsfiddle.net/UjAQf/102/ Is there a better way to apply the pickBody to
I have the following code in HTML/CSS: http://jsfiddle.net/XmRNh/ As you can see, there is
Here is the jsfiddle for what I was testing http://jsfiddle.net/5hhRF/ there is number 1
Is there a download function in jsFiddle, so you can download an HTML with
Is there any way to keep this simple JQuery animation from flashing? http://jsfiddle.net/v3DVf/6/
I have following fiddle: http://jsfiddle.net/BFSH4/ As you see there are two issues: The h1
Is there anything out there that can do what jsFiddle does, but for asp.net
There is this triangle that is made with css: http://jsfiddle.net/W3hNx/1/ How can I make

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.