01.
$(document).ready(
function
() {
02.
03.
$(
'a[id^="view"]'
).fancybox({
04.
'width'
:
'100%'
,
05.
'height'
:
'100%'
,
06.
'autoScale'
:
true
,
07.
'transitionIn'
:
'none'
,
08.
'transitionOut'
:
'none'
,
09.
'type'
:
'iframe'
,
10.
onClosed :
function
() {
11.
12.
}
13.
});
14.
15.
});