I have 3 Divs (screens i.e A ,B C ) ..each screen has a button..I want to change the screen on button click..How can this be achieved by using javascript jquery no C#...All the screen must have the same location...
Explanantion :
1 div should be displayed at a time .. If Screen A is displaying Screen B and C should be hidden.. on button click of screen A the Screen A should get disappear and Screen B becomes visible .. Screen B has two button if button1 is press Screen A should appear and If button2 is press Screen C should appear...
<div>
This is Screen A<br />
<asp:Button ID="Button1" runat="server" Text="Go to Screen B" />
</div>
<div>
<div>
This is Screen B</div>
<br />
<asp:Button ID="Button2" runat="server" Text="Go to Screen A" />
<br />
<asp:Button ID="Button3" runat="server" Text="Go to Screen C" />
</div>
<div>
<div>
This is Screen C</div>
<br />
<asp:Button ID="Button4" runat="server" Text="Go to Screen B" />
</div>