Hide/Show ASP.Net Panel Control using Jquery
Posted On Tuesday, October 23, 2012 By Techreceipe.com. Under Asp.Net, Javascript Tags: javascript, Jquery, Panel
This code snippet explains the method of Hide/Show an ASP.net Panel Control using Jquery.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="DivShow.aspx.vb" Inherits="DivShow" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#pnlSample").hide();
});
$("input").live("click", ...
Most of the time we are in the job of developing web page which gets user inputs. In all of these forms we need to check for changes in these fields ,when the user leaves from the current page alert them. This has been a tedious job and have to ...

