How to browse and select a file from sdcard using Phonegap 3.0?

android, cordova

Solution

There is no out-of-the-box solution. Unfortunately, you have to build it yourself, using File API.

Here you have an example, build using jQuery Mobile.

Problem

Gone through API of Phonegap 3.0. I want to browse files from SD card when i click on link or button by using UI For example: ``` <p onclick="browseFile()">Upload</p> ``` let assume browseFile() function contains the browsing but require UI implementation. Or ``` <input type="file"> ``` But when i use input type=file,it is browsing file from Gallery and Music Tracks but not from SD card. I want that i should be able to select file from SD by using UI when i click on link or button Can anyone suggest the link for same which give Java Script code along with UI for browsing file from SD card?

Original source