Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Can I loop through jquery plugin setting options?

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #34953
    noahgelman
    Participant

    I’m sorry that the title might not be as descriptive as I want it to be

    I have jquery plugin with a couple settings like:

    option1: 3,
    option2: 8,
    option3: 5,

    I’ll try to simplify loop.

    for (i=1; i<=3; i++)
    {
    console.log(settings.option + i);
    }

    The issue I have is grabbing the setting value while using the ‘i’ from the loop. Any ideas on how I can loop through the settings and get their values?

    #89861
    Mottie
    Member

    Try doing this:

    console.log( settings["option" + i] );
    #89863
    noahgelman
    Participant

    Ah! perfect. Thank you. I was trying to figure out the syntax for it. Thanks a lot.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.