Using jQuery with elements in hidden div ?

Using jQuery with elements in hidden div ?

I have also posted this question on StackOverflow which you can see here. This first issue I had to solve was using jQuery in an ASPP.Net app with Master \ Content pages - that issue is resolved. The main issue is that I have a content page that has many divs on it - 3 of which are hidden when the page first loads and are then each displayed based on various user interaction wth the page. One of the divs is displayed by server side code for many reasons  dvDetail.style("displaya') = "block".
 
My issue is that I need to use jQuery on an element that is located inside this div and can't seem to get that to work. The jQuery works just fine on anything that is not inside the hidden div. Items to note:
  • Hiding and displaying the hidden divs works just fine. I am not using the visible property on any div - I use the display = "block" and 'none' in both the client side code and the server side code.
  • jQuery working just fine on the page - just not on elements inside the hidden div.
  • jQuery selectors working just fine in the content page scenario - just not in the hidden div.