01.
<script type=
"text/javascript"
>
02.
03.
04.
$(document).ready(function() {
05.
06.
07.
$(
'a[id^="edit"]'
).fancybox({
08.
'width'
:
'90%'
,
09.
'height'
:
'70%'
,
10.
'autoScale'
:
false
,
11.
'transitionIn'
:
'none'
,
12.
'transitionOut'
:
'none'
,
13.
'type'
:
'iframe'
,
14.
onClosed : function() {
15.
parent.location.reload(
true
);
16.
}
17.
});
18.
19.
20.
21.
});
22.
</script>
23.