This commit is contained in:
alban 2020-01-13 14:48:35 +01:00
parent 5564dd6771
commit 9b7f4170b0
2 changed files with 20 additions and 0 deletions

View File

@ -29,6 +29,10 @@ body {
width: auto;
padding: 2% 5%;
}
table{
display:none;
}
table tr td {
color: #ccc;
padding: 10px;

View File

@ -25,6 +25,7 @@
<h1>Festival HSF 2020 : Programme</h1>
<h2>
Stands permanents
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
@ -180,6 +181,8 @@ Stands permanents
<h2>
Vendredi 7 février 2019
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
<thead>
@ -257,6 +260,8 @@ Vendredi 7 février 2019
<h2>
Samedi 8 février 2019
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
<thead>
@ -358,5 +363,16 @@ Samedi 8 février 2019
</tbody>
</table>
<script>
jQuery(function(){
jQuery("h2").live("click",function(e){
var el = jQuery(this);
el.next().toggle();
el.find(".info").toggle();
})
})
</script>
</body>
</html>