I want to highlight a div on page load. i could find a solution. But the issue is that it fades out entire content of the div. what i used
$('#searchdiv .highligth').fadeOut(1000);
and the html i have written
<div id="searchdiv">
<div class="highligth">
<table cellspacing="2">
<tr>
<td>
<a class="anchorText">Filter By:</a>
</td>
<td>
<asp:ObjectDataSource ID="objLanguage" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetLanguage" TypeName="Lang.Repositories.LanguageRepository">
</asp:ObjectDataSource>
<asp:DropDownList ID="dlFilter" runat="server" DataSourceID="objLanguage" DataTextField="LanguageType"
DataValueField="LanguageId" Width="150px" AppendDataBoundItems="True" OnDataBinding="dlFilter_DataBinding"
OnDataBound="dlFilter_DataBound">
</asp:DropDownList>
</td>
<td>
<asp:Button ID="btnFilter" runat="server" Width="90px" Text="Filter" OnClick="btnFilter_Click" />
</td>
</tr>
</table>
</div>
</div>
for few seconds the div is highlighted and as fadeout is mentioned so the content also fade out and the div becomes empty. How to let those control be visible??
Thanks.