Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
- <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css"/>
- <script type="text/javascript">
- $(document).ready(function() {
- $(".modalScreen").dialog({
- modal: true,
- autoOpen: false,
- height: "320",
- width: "400",
- draggable: true,
- resizeable: true,
- title: "Edit user"
- });
- $(".modalEdit").click(
- function() {
- var data = $(".modalEdit").attr("rel");
- $(".echo").append(data);
- var url = "iframe.php";
- $(".modalScreen").dialog("open");
- $(".modalIFrame").attr("src",url + "?" + data);
- return false;
- });
- });
- </script>
- </head>
- <body>
- <a class="modalEdit" rel="userid=1" href="#">Edit user 1</a>
- <a class="modalEdit" rel="userid=2" href="#">Edit user 2</a>
- <a class="modalEdit" rel="userid=3" href="#">Edit user 3</a>
- <div class="modalScreen"><iframe class="modalIFrame" width="100%" height="100%" frameBorder="0" title="dialogBox"></iframe></div>
- <div class="echo"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement