Hi folks.
I know numbertohide = 2.
How come
Code:
for (var h=numbertohide;h<6;h++)
{
inputselectionelementid = '#inputselection' + h;
$(inputselectionelementid).hide();
console.log('hide ' + inputselectionelementid);
}
does not work? Only var h=2 directly properly executes the loop.
Thanks