Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Mar 02, 2012 09:25 AM by MetalAsp.Net
Member
586 Points
757 Posts
Mar 01, 2012 08:18 PM|LINK
i need a demo link to design a check box i agree with terms and ondtion and when user click on checkbox a sliding box will open and he an click the submit button
need some animation
210 Points
50 Posts
Mar 02, 2012 07:28 AM|LINK
check this
http://www.lennybacon.com/PleaseWaitBuildingAWaitScreenControlForASPNET.aspx
http://forums.asp.net/t/1318510.aspx
All-Star
20155 Points
3328 Posts
Mar 02, 2012 09:14 AM|LINK
Hi,
Check the below snippet!
<script type="text/javascript" src="jquery-1.5.2.min.js"> </script> <div> <asp:CheckBox runat="server" ID="chkTerms" onclick="ShowSlidingBoxWithButton();" Text="I Accept the Terms and Conditions" /> <div id="myBox" style=" width:100px;height:50px;background-color:#f2c;display:none;"> <asp:Button runat="server" Text="Button" ID="btn" /> </div> <script type="text/javascript"> function ShowSlidingBoxWithButton() { $('#myBox').slideDown(); } </script> </div>
Hope it helps u...
112211 Points
18262 Posts
Moderator
Mar 02, 2012 09:25 AM|LINK
Wildoo
Member
586 Points
757 Posts
checkbox I agree with terms
Mar 01, 2012 08:18 PM|LINK
i need a demo link to design a check box i agree with terms and ondtion and when user click on checkbox a sliding box will open and he an click the submit button
need some animation
saalameejen
Member
210 Points
50 Posts
Re: checkbox I agree with terms
Mar 02, 2012 07:28 AM|LINK
check this
http://www.lennybacon.com/PleaseWaitBuildingAWaitScreenControlForASPNET.aspx
http://forums.asp.net/t/1318510.aspx
roopeshreddy
All-Star
20155 Points
3328 Posts
Re: checkbox I agree with terms
Mar 02, 2012 09:14 AM|LINK
Hi,
Check the below snippet!
<script type="text/javascript" src="jquery-1.5.2.min.js"> </script> <div> <asp:CheckBox runat="server" ID="chkTerms" onclick="ShowSlidingBoxWithButton();" Text="I Accept the Terms and Conditions" /> <div id="myBox" style=" width:100px;height:50px;background-color:#f2c;display:none;"> <asp:Button runat="server" Text="Button" ID="btn" /> </div> <script type="text/javascript"> function ShowSlidingBoxWithButton() { $('#myBox').slideDown(); } </script> </div>Hope it helps u...
Roopesh Reddy C
Roopesh's Space
MetalAsp.Net
All-Star
112211 Points
18262 Posts
Moderator
Re: checkbox I agree with terms
Mar 02, 2012 09:25 AM|LINK