Here is what I have:
What I would like to do is display the button as I hover over the div but I cannot access either the div or the button by their IDs because they are generated dynamically. Any ideas?
Thanks in advance guys.
Code:
<div id="div" onmouseover="">
<textarea name="textarea" id="txtNotes05" runat="server"></textarea>
<input type="button" id="btnDeleteNote05" runat="server"
style="display:none;" />
</div>
What I would like to do is display the button as I hover over the div but I cannot access either the div or the button by their IDs because they are generated dynamically. Any ideas?
Thanks in advance guys.