1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Show Content</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<script type="text/javascript">
function openpopup(popurl,winName){
winpops=window.open(popurl,winName,'toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=1020px,height=300px,left=125px,top=300px,scrollbars=yes').focus();
}
</script>
<ul>
<li><a href="centent1.txt" onclick="openpopup(this.href,'window1'); return false;">centent1</a></li>
<li><a href="content2.txt" onclick="openpopup(this.href,'window1'); return false;">centent2</a></li>
</ul>
</script>
</body>
</html> |
Partager