Created
July 15, 2013 02:11
-
-
Save jookyboi/5997061 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<link rel="stylesheet" href="fancybox/jquery.fancybox.css?v=2.0.4" type="text/css" media="screen" /> | |
<script type="text/javascript" src="fancybox/jquery.fancybox.pack.js?v=2.0.4"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
$(".fancybox").fancybox({ | |
maxWidth : 800, | |
maxHeight : 600, | |
fitToView : false, | |
width : '70%', | |
height : '70%', | |
autoSize : false, | |
closeClick : false, | |
type : 'iframe', | |
openEffect : 'none', | |
closeEffect : 'none', | |
afterClose : function() { | |
window.location.reload(); | |
} | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<a class="fancybox fancybox.iframe" id="newLink" href="b.html">link</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment