<!DOCTYPE html>
<html>
<head>
<script src="
http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";>
</script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $("#test").click();
  });
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
<input id="test" type="file" style="display:none;">
</body>
</html>

Run this code on android browser, click p will never show file dialog.
But if I remove style="display:none;", let the input show, it works.
Why?
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to