Ir a la navegación
Ir a la búsqueda
Busca en cnbGuatemala con Google
1 byte añadido
, hace 8 años
Línea 210: |
Línea 210: |
| | | |
| $(document).ready(function(){ | | $(document).ready(function(){ |
− | $('#show-hide').toggle( | + | $("#hide").click(function(){ |
− | function(){
| + | $("span.dynamicFontLineWordsNumber").hide(); |
− | $('span.dynamicFontLineWordsNumber').show();
| + | $('#hide').hide(); |
− | $('#show-hide').text('Ocultar numeración');
| + | $('#show').show(); |
− | },
| + | }); |
− | function(){
| + | $("#show").click(function(){ |
− | $('span.dynamicFontLineWordsNumber').hide();
| + | $("span.dynamicFontLineWordsNumber").show(); |
− | $('#show-hide').text('Mostrar numeración');
| + | $('#hide').show(); |
− | });
| + | $('#show').hide(); |
| + | }); |
| }); | | }); |
| | | |
Línea 248: |
Línea 249: |
| </style> | | </style> |
| <div class="noprint"> | | <div class="noprint"> |
− | <button id="show-hide">Ocultar numeración</button> | + | <button id="hide">Ocultar numeración</button> |
| + | <button id="show">Mostrar numeración</button> |
| | | |
| </div> | | </div> |