Hi there, the question:
I have this array:
var Thumbnails = new Array();
Thumbnails[0] = new Array('1', 'listing_34.jpg ', 'Home View');
Thumbnails[1] = new Array('2', 'sexy2.jpg', 'Sexy');
Thumbnails[2] = new Array('3', 'blue-sun-m.jpg', 'New Test');
Thumbnails[3] = new Array('4', 'viva_firefox_e ats_ie.jpg', 'Firefox');
All fine at this point. But when a try to change the value for one:
Thumbnails[0][1] = '2';
Thumbnails[1][1] = '1';
This don't work. Any ideas ?, thanks in advanced.
-- eft0.
I have this array:
var Thumbnails = new Array();
Thumbnails[0] = new Array('1', 'listing_34.jpg ', 'Home View');
Thumbnails[1] = new Array('2', 'sexy2.jpg', 'Sexy');
Thumbnails[2] = new Array('3', 'blue-sun-m.jpg', 'New Test');
Thumbnails[3] = new Array('4', 'viva_firefox_e ats_ie.jpg', 'Firefox');
All fine at this point. But when a try to change the value for one:
Thumbnails[0][1] = '2';
Thumbnails[1][1] = '1';
This don't work. Any ideas ?, thanks in advanced.
-- eft0.
Comment