Help! Problem with simple script
Hello, I'm taking a few steps in jquery, but I have a problem that had not before ...
by clicking on the input type = "button" with id = "btn-send", the # result is not shown .... I can not find the solution you ...
I would appreciate your help.
- <script type="text/javascript" src="js/jquery-1.9.0.js"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $('#resultado').hide();
- $('#btn-enviar').click(function() {
- $('#resultado').show();
- });
- });
- </script>