Advertisement
Guest User

RobertR

a guest
Nov 26th, 2010
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.     <head>
  3.     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  4.     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
  5.     <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css"/>
  6.     <script type="text/javascript">
  7.       $(document).ready(function() {
  8.             $(".modalScreen").dialog({
  9.                 modal: true,
  10.                 autoOpen: false,
  11.                 height: "320",
  12.                 width: "400",
  13.                 draggable: true,
  14.                 resizeable: true,
  15.                 title: "Edit user"
  16.             });
  17.             $(".modalEdit").click(
  18.                 function() {
  19.                     var data = $(".modalEdit").attr("rel");
  20.                     $(".echo").append(data);
  21.                     var url = "iframe.php";
  22.                     $(".modalScreen").dialog("open");
  23.                     $(".modalIFrame").attr("src",url + "?" + data);
  24.                     return false;
  25.             });
  26.       });
  27.     </script>
  28.     </head>
  29.     <body>
  30.         <a class="modalEdit" rel="userid=1" href="#">Edit user 1</a>
  31.         <a class="modalEdit" rel="userid=2" href="#">Edit user 2</a>
  32.         <a class="modalEdit" rel="userid=3" href="#">Edit user 3</a>
  33.  
  34.         <div class="modalScreen"><iframe class="modalIFrame" width="100%" height="100%" frameBorder="0" title="dialogBox"></iframe></div>
  35.  
  36.         <div class="echo"></div>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement