This post has been edited 1 times, last edit by "stretchie" (Jul 3rd 2011, 2:11pm)
This post has been edited 2 times, last edit by "VN2011" (Jul 4th 2011, 3:03am)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<script type="text/javascript" src=js/jquery/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src=js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<link rel="stylesheet" href="js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
<script type="text/javascript">
function openPopup(t,linktourl,w,h,type)
{
$.fancybox({
'title' : t,
'width' : w,
'height' : h,
'href' : linktourl,
'type' : type,
'autoScale' : 'true',
'overlayColor' : '#000000',
'overlayAlpha' : '0.3'
});
}
</script>
|
|
|
Source code |
1 |
onclick="js(openPopup('a title', 'linkto.pdf', 500, 500, 'iframe'))"
|