jquery not opening any window to select file in android native browser -


i trying upload file through html , jquery. it's working fine on desktop browsers on mobile works fine in chrome browser in android native browser not opening windows select file. i'm testing on samsung galaxy grand android version: 4.1.

<div class="hiddeninputfile">     <form:input type="file" id="fileinput" path="imagepath" accept="image/*" /> </div> <a id ="addphotobtn" href="javascript:void(0)" class="btn_grey">     add photo </a> 
$(function(){     $("#addphotobtn").on('click', function(e){         e.preventdefault();         $("#fileinput:hidden").trigger('click');       });     });  // other stuff... 


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -