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
132
attachment: nyromodal.js
(1.8 KB)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<link href="/scripts/nyroModal/styles/nyroModal.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/scripts/js/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="/scripts/nyroModal/js/jquery.nyroModal-1.3.1.js"></script>
<script type="text/javascript">
$(function() {
$('a.nyroModal').nyroModal({bgColor: '#ff0000'});
$('#flim').submit(function(e) {
e.preventDefault();
if ($("#flim :text").val() != '') {
$('#flim').nyroModalManual();
} else {
alert("Enter a value before going to " + $('#flim').attr("action"));
}
return false;
});
$('#flim1').click(function(e) {
e.preventDefault();
if ($("#flim :text").val() != '') {
$('#flim').nyroModalManual();
} else {
alert("Enter a value before going to " + $('#flim').attr("action"));
}
return false;
});
$('#flim2').click(function(e) {
e.preventDefault();
if ($("#flim :text").val() != '') {
$('#flim').nyroModalManual();
} else {
alert("Enter a value before going to " + $('#flim').attr("action"));
}
return false;
});
$('#flim3').click(function(e) {
e.preventDefault();
if ($("#flim :text").val() != '') {
$('#flim').nyroModalManual();
} else {
alert("Enter a value before going to " + $('#flim').attr("action"));
}
return false;
});
$('#flim4').click(function(e) {
e.preventDefault();
if ($("#flim :text").val() != '') {
$('#flim').nyroModalManual();
} else {
alert("Enter a value before going to " + $('#flim').attr("action"));
}
return false;
});
$('#submitSizes').click(function(e) {
$('#sizeFrm').nyroModalManual();
return false;
});
});
</script>
Powered by
Google Project Hosting