Skip to main content

All Questions

1 vote
4 answers
2k views

Enable/Disable Controls on selection of Radio using jquery

I am trying to Enable/Disable certain controls depending upon the selection of Radio. it doesn't seem to be working. I want the disabled text and radio fields to be enabled when yes radio is selected. ...
Aaditya Ganapathy's user avatar
0 votes
2 answers
329 views

Hidden control seen as visible by jQuery

I have a table as such: <table class="RepaymentTable"> <thead> <tr> <td style="width: 200px;"> </td> <td> ...
anothershrubery's user avatar
1 vote
3 answers
6k views

How to hide toggle div when clicking anywhere on the page?

I Hide/Show elements with .toggle() <div style="position: absolute; top: 0; right: 250px;z-index:7"> <div class="Search" style="display: none;" > <table width="100%" style="...
Niloo's user avatar
  • 1,215
0 votes
1 answer
3k views

How to set the div tag visible on post back ASP.NET

I have a textbox that is used for searching. upon clicking the ok button and posting back, the function is called, and gets matching results by using sql query in the aspx.cs file this information ...
user478636's user avatar
  • 3,394
0 votes
4 answers
10k views

jquery asp.net button visibility

There is some code like this : if ( bValid ) { $( this ).dialog( "close" ); $("#btnExcel").show(); } and .aspx look like : <form id="form1" runat="server"> <...
Pratik's user avatar
  • 11.7k
19 votes
4 answers
124k views

How can I make visible an invisible control with jquery? (hide and show not work)

How can I change the visibility of a control with jQuery? I have a control that its visible property to false (not css). When I used show() function for it nothing happened, it seems that hide() and ...
SilverLight's user avatar
  • 20.2k