Browse
For agents
About
Insert Html Snippet
/
1.4
Insert Html Snippet
v1.4
Switch version
1.4.6
trunk
1.0
1.0.1
1.1
1.1.1
1.2
1.2.1
1.2.2
1.2.3
1.2.4
1.2.5
1.3
1.3.1
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.7
1.3.8
1.4
1.4.1
1.4.2
1.4.3
All 27 releases
Overview
Code
insert-html-snippet
/
js
/
notice.js
notice.js
in Insert Html Snippet 1.4, at js/notice.js
16 lines
312 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
jQuery
(
document
)
.
ready
(
function
(
)
{
2
jQuery
(
'
#xyz_system_notice_area
'
)
.
animate
(
{
3
opacity
:
'
show
'
,
4
height
:
'
show
'
5
}
,
500
)
;
6
7
jQuery
(
'
#xyz_system_notice_area_dismiss
'
)
.
click
(
function
(
)
{
8
jQuery
(
'
#xyz_system_notice_area
'
)
.
animate
(
{
9
opacity
:
'
hide
'
,
10
height
:
'
hide
'
11
}
,
500
)
;
12
13
}
)
;
14
15
}
)
;
16