Ok basic JS 101 I know, but can't find the answer...
For the below code I have declared var mls_link = []; In globals
The data.getValue yields a string item (http addresses) When I step through the code the string is an array rather than each "item" being a array entry.. ie mls_link [0] is h (the beginning of the http address) I want each element to be addressable as an http address so when I ask for mls_link[0] I get 'http://someaddress.com'
for ( var i = 0; i < data.getNumberOfRows(); i++ )
mls_link+=(data.getValue(i,1));
Thanks