My favorites
▼
|
Sign in
nyromodal
nyroModal - jQuery Modal Plugin
Project Home
Downloads
Issues
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
138
attachment: test.html
(940 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>tester</title>
<link rel="stylesheet" type="text/css" href="http://nyromodal.nyrodev.com/styles/nyroModal.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
<script src="http://nyromodal.nyrodev.com/js/jquery.nyroModal-1.3.1.pack.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$('#regcall').nyroModalManual();
});
function manual(){
$.nyroModalManual({
content: $('#testdv')
});
$('#testdv').show('slow');
return false;
}
</script>
</head>
<body>
<a href="#" onclick="return manual();">manual call</a> then <a href="#testdv" class="nyroModal" id="regcall" >regular call</a>
<div id="testdv" style="display:none">
Test Div
</div>
</body>
</html>
Powered by
Google Project Hosting