Soufiane code requires a jQuery Javascript library to be created on your page. If you don't have one, you can get it at http://www.jquery.com or use something in plain Javascript:
HTML
<input type="file" id="openf" />
JS:
document.getElementById('openf').onclick = function (e) { e.preventDefault(); };
source share