I'm new to JQuery and have to search a json object with jquery. the json structure is as follows:
[
["12345","Mary Smith","789 Main Street","Orlando","FL","32808"],
["33333","James Richards","55 High St","Miami","WV","23412"]
]
I want to search the object on the basis of first value i.e. 12345 and return the whole object.
How can I do this?