-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathdemo.html
More file actions
20 lines (20 loc) · 795 Bytes
/
demo.html
File metadata and controls
20 lines (20 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>dialogImage Demo</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/redmond/jquery-ui-1.7.2.custom.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery.dialogImage.min.js"></script>
<script type="text/javascript">
$( function() {
$("a.dialogimage").dialogImage();
});
</script>
</head>
<body>
<h1>dialogImage Demo</h1>
<p><a href="image.jpg" class="dialogimage">Link to image</a> (should show in dialog window).</p>
</body>
</html>