Click here to Skip to main content
15,923,689 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi,
USing jquery I have to display 2 div tags one below the other...


when clicked the first div should display then the second div above that..

I have used this code so far...

HTML
$('#AddressRecent').hide();
$("#AddAnother").click(function () {
            $('#<%=txtAddressTitle.ClientID %>').val('');
$('#Address1').show();
            $('#AddressRecent').show();
});
    });


can someone please help me how to show the addressrecent div tag as well following below addess1
Posted
Updated 12-May-14 5:47am
v2
Comments
DotNet WeblineIndia 12-May-14 8:56am    
As per your description you haven't achieved the sequence of the divs. Am i right?

1 solution

Here is complete script: http://stackoverflow.com/questions/13435430/how-to-make-div-show-up-on-top-of-other-divs[^].

If you would like to find another portion of samples, please have a look here[^].
 
Share this answer
 
v2

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