One of my PHP scripts generates a JavaScript array with the following structure:
new Array(
new Array("Maine", 1),
new Array("Maryland", 2),
new Array("Massachusetts", 3),
new Array("Michigan", 4),
new Array("Minnesota", 5),
new Array("Mississippi", 6),
new Array("Missouri", 7),
new Array("Montana", 8)
);
Can someone suggest how to implement an auto-suggestion feature for the search form using this data?
Thank you.