Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a button on click of which i want to either show/hide a content which is places in a div. How can we implement this? Also whats the error in the code below--

   <head runat="server">
   <title>Toggle Functionality</title>

<script src="jquery-1.3.1.js" type="text/javascript"></script>

<script type="text/javascript">
$(document).ready(function(){
 $("button").click(function () {
 $("p").toggle("slow");
});
});
</script>

</head>
 <body>
<form id="frmQuery" runat="server">
    <table>
        <tr>
            <td>
         <asp:Button ID="imgForm" runat="server" ImageUrl="~/Image/Khushi1.jpg" />
            </td>
        </tr>

    </table>
     <p>
            Toggle displaying 
        </p>
</form>

        </body>
share|improve this question

1 Answer

up vote 1 down vote accepted

The asp:Button control renders to an <input type="submit"> html element. So you should use

$("input[type=submit]")

instead of

$("button")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.