I know you might think this is a duplicate or a dumb question. But the answers doesn\'t help me.
Here\'s my simple problem:
var option1 = \"some text
Try this:
var option1 = "some text";
var option2 = "some text";
var option3 = "some text";
for(var i = 1; i < 4; i++)
{
alert(eval('option'+i) + '\n');
}
It's better if you try and use an array or access it via window as Kolink posted. And if you do use eval, make sure nothing that is not in your control gets eval'ed as its a security risk.