How about. My question is this:
I create a variable in javascript within an each:
window["opcion" + v.id] = {var1: 1, var2: 2};
If I want to access it within it each, how should I refer to it?
It could be like this: "opcion"+v.id
ó opcion+v.id
I hope you can answer my question.