Looking for some guidance on how to accomplish this task...
I've searched extensively but haven't been able to find a solution. If anyone could lend a hand, I'd greatly appreciate it.
Here's the code snippet I'm working with:
<div id="whats-new-content">
<div class="newtextbox">
<textarea class="mytextbox" id="myuniquetextbox" cols="50" rows="10" style="height: 50px;"></textarea>
</div>
<div id="whats-new-options" style="display: none;">
<input type="submit" name="aw-whats-new-submit" id="aw-whats-new-submit" value="Submit">
</div>
</div>
As you can see, I added style="display: none;" to the div containing the submit button.
While my knowledge of jQuery and javascript is limited, I'm in need of a simple script that will change "display:none" to "display:block" when the textbox is clicked.
Your assistance would be immensely appreciated. Thank you!