Need a proper solution how to write this expression.
var ary1 = ["","",""];
var ary2 = ["","",""];
var ary3 = ["","",""];
var ary4 = ["","",""];
var div;
for(var i=1; i<5; i++){
div += ("<p id='text'"+i+">"+(ary+i)[0]+"</p>");
}
Just looking for a better solution to make it work. Not getting value from ary1, ary2, ary3 and ary4.
"` the singlequote needs to be moved.
– Kevin B Oct 16 '13 at 17:34