Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I created one slide show in my page I am using this code in .aspx
In jquery I am using this jquery function

JavaScript
$(document).ready(function () {
        $("#flip").click(function (e) {
            $("#hide").slideToggle("slow");
            e.preventDefault();
        });
    });


Here when I click button the slide is expanding down,

But, here my issue in slide box I created one drop down when the drop down event is fired the slide is goes to expounds to up.

I need solution like it should be expanding down only when drop down event is fired or any other events fired on the page.

This means when I click drop down button its going to the post back then immediately slide box goes up. How can I prevent this.

please share any idea to me.
Posted
Updated 9-Oct-13 19:41pm
v7
Comments
Palash Mondal_ 9-Oct-13 5:18am    
Please post the HTML markup also. That would help!
Please create a jsfiddle, if possible.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900