In asp.net Project, firstly I have to hide the table row and when click on linkbutton then show this table row. So I call a function on OnClientClick of link button with name ShowDiv. Now issue is that after calling that function, It again go to document.readyfunction.
<script type="text/javascript">
$(document).ready(function () {
$("#trUpdateImportEmail").hide();
});
function ShowDiv() {
$("#trUpdateImportEmail").show()
}
</script>
<asp:LinkButton ID="lnkUpdateEmail" runat="server" CausesValidation="False" CommandName="Select" Text='Update Import Email' OnClientClick="Show()"></asp:LinkButton>