HTML lists with jQuery for mobile devices

Recently I had to transform a group of li elements into an accordion for a mobile version of a client website. So this is what I came up with. I had an html that looked like this <ul> <li><span>Category1</span> <ul> <li>Subcategory1</li> <li>Subcategory2</li> </ul> </li> <li><span>Category2</span> <ul> <li>Subcategory</li> <li>Subcategory1</li> </ul> </li>   </ul> And I wanted [...]

Android SDK and Local Testing

It’s been awhile since I installed the Android SDK, today I’m starting a new android app so I updated to the latest version. To my surprise the tools have moved to different folders so just as I was ready to start testing locally I couldn’t find adb (adroid debugger bridge) in the tools folder, turns [...]