javascript - Click action does not work against input file element on Chrome -
this question has answer here:
i input file element, , try click on in js on chrome console, not work , file upload dialog not appear. how can achieve this?
document.getelementbyid("input_file").click();
try onclick:
document.getelementbyid("input_file").onclick = function(){ //code action when clicked }; look here: http://jsfiddle.net/ghp2y/1/
Comments
Post a Comment