1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <!doctype html>
<head>
<title>Ma page de test</title>
<meta charset="UTF-8" />
<script type="text/javascript" src="./main/js/jquery-ui/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="./main/js/jquery-ui/jquery-ui-1.8.16.custom.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
</style>
<script type='text/javascript'>
function show(id) {
document.getElementById(id).style.display = '';
}
function addPdf(id) {
document.getElementById(id).innerHTML = '<object data="mon_pdf.pdf" type="application/pdf" title="cv" width="800" height="885"></object>';
}
</script>
</head>
<body>
<header>
</header>
<article>
<a href="#" onclick="show('show');">Clique-moi ! clique-moi !</a>
<br /><a href="#" onclick="addPdf('show2');">Clique-moi encore ! clique-moi encore !</a>
<div id="show" style="display: none;"><object data="mon_pdf.pdf" type="application/pdf" title="cv" width="800" height="885"></object></div>
<div id="show2"></div>
</article>
<footer>
</footer>
</body>
</html> |