I am working on a slider and getting rid of all the glitches. In this process, I want to find a way to make my first 'text field' hidden until something becomes 'active'.
The reason is that when my page loads the original image (in a slider), the text field title is showing up though it should be seen as active, it isn't. All I want is a 'toggle' that says "hide until something becomes active" if possible.
Here is the html side that I am trying to hide, the first h2 which I've found through jQuery, now I just need to toggle it back on.
- <div id="thumbtitle">
- <div class="title"><h2><span>Learn</span></h2></div>
- <div class="title"><h2>Watch</h2></div>
- <div class="title"><h2>Admin Tip</h2></div>
- <div class="title"><h2>View</h2></div>
- <div class="title"><h2>Read</h2></div>
- </div>