Hi,
I have a DIV in Master Page which has some links. On click of a button i am enabling and disabling the DIV tag.
I want to load this DIV tag above Content Place holder. Currently it is taking space in left side of the page.
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="N.master.cs" Inherits="MasterPage_N" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#flip").click(function () {
$("#panel").slideToggle("slow");
});
});
</script>
<style>
#panel, #flip {
padding: 5px;
text-align: left;
background- ...
Go to the complete details ...