1 2 3 4 5 6 7 |
<input type="file" onchange="abc(this)"> <script> function abc(element){ $(element).hide(); } // input box will hide </script> |
1 2 3 4 5 6 7 |
<input type="file" onchange="abc(this)"> <script> function abc(element){ $(element).hide(); } // input box will hide </script> |