Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Page Language="VB" AutoEventWireup="false" CodeFile="sandbox.aspx.vb" Inherits="cms_sandbox" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- <script src="../js/jquery-1.8.3.min.js"></script>
- <style>
- * {
- margin:0;
- padding:0;
- }
- </style>
- <link href="style/modal.css" rel="stylesheet" />
- <script src="../js/modal.js"></script>
- <script>
- // Wait until the DOM has loaded before querying the document
- $(document).ready(function () {
- $.get('PagesForMenu.aspx', function (data) {
- modal.open({ content: data });
- });
- $('a#howdy').click(function (e) {
- modal.open({ content: "Hows it going?" });
- e.preventDefault();
- });
- });
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <a id='howdy' href='#'>Howdy</a>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment