I just can't seem to get this to work from content page.
Works great from a normal form.
Working:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Fadesample.aspx.vb" Inherits="Fadesample" %>
<!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 id="Head1" runat="server">
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<style type="text/css">
.panel{display: none;}
</style>
<script type="text/javascript">
$(function () {
$('#btnShowPanel').click(function (e) {
e.preventDefault();
...
Go to the complete details ...