Not strictly JQM but here goes.
Hi, this isn't strictly JQM but I read this forum a lot and have picked up some great tips etc, so here goes.
- ad=new Array(3);
- ad[0]=new Array(3);
- ad[0][0]=new Object();
- ad[0][0].name="paul";
- ad[0][1]=new Object();
- ad[0][1].name="jones";
- ad[0][2]=new Object();
- ad[0][2].name="smith";
- // How would I get the index of the name 'jones'? In this case 1
Thanks in advance.