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?
I have jquery plugin with a couple settings like:
I'll try to simplify loop.
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?