Hi all,
I have used a label box to render a "please wait" message when the user clicks "Save" button. Once the processing gets over, the output gets displayed. My goal is to hide the label once the output is displayed. How do i achieve this.
My code is as follows,
<label id="embedLabel" class="hide" runat="server" visible="false">Please Wait
</label>
<div id="ChannelDIv" class="hide">
<textarea id="channellinkCode" runat="server" >
</textarea>
</div>
My goal is to hide the embedLabel
label once the embedLabel
is displayed. Am using javascript function on the click event of "save" button to show the embedLabel
div. Any help would be deeply appreciated.