logre hacerlo de estas forma espero que te ayude
hace rato escrivi full comentarios pero esta pagina esta mas horrible que la c g todo
vas a tener que chekarlos full
Código Javascript
:
Ver original<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<meta charset='UTF-8'/>
</head>
<body>
<input id="textisselectedanyfile" type="text" value="Not selected any file">
<input type="file" name="photo" id="photo" style="display:none" onchange="updateMessage()"/>
<div id="loadtextbotton">my btn</div>
<style>
#loadtextbotton {
background-color: black;
color: white;
padding: 30px;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#loadtextbotton").click(function() {
jQuery("#photo").trigger('click');
});
});
function updateMessage() {
jQuery("#textisselectedanyfile").val(jQuery("#photo").val());
if (jQuery("#photo").val() == "") {
jQuery("#textisselectedanyfile").val("Not selected any file");
}
}
</script>
</body>
</html>