Sin resumen de edición |
Sin resumen de edición Etiquetas: mobile edit mobile web edit |
||
Línea 1: | Línea 1: | ||
/* Cualquier código JavaScript escrito aquí se cargará para los usuarios de la versión móvil */ | /* Cualquier código JavaScript escrito aquí se cargará para los usuarios de la versión móvil */ | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('.mw-collapsible .mw-collapsible-content').hide(); // hide all div with class .content by default | $('.mw-collapsible .mw-collapsible-content').hide(); // hide all div with class .content by default | ||
$('.mw-collapsible .down').hide(); // hide all div with class .content by default | |||
$('.mw-collapsible .up').click(function() { // when the header is clicked which have class .header | $('.mw-collapsible .up').click(function() { // when the header is clicked which have class .header | ||
$('.mw-collapsible .down').show(); | |||
$('.mw-collapsible .up').hide(); | |||
$(this).parent().find('.mw-collapsible-content').slideToggle(500); // div with class .content will be toggled | $(this).parent().find('.mw-collapsible-content').slideToggle(500); // div with class .content will be toggled | ||
}); | |||
$('.mw-collapsible .down').click(function() { // when the header is clicked which have class .header | |||
$('.mw-collapsible .up').show(); | |||
$('.mw-collapsible .down').hide(); | |||
$('.mw-collapsible .mw-collapsible-content').hide(); // div with class .content will be toggled | |||
}); | }); | ||
}); | }); |
Revisión del 19:34 3 may 2021
/* Cualquier código JavaScript escrito aquí se cargará para los usuarios de la versión móvil */
$(document).ready(function() {
$('.mw-collapsible .mw-collapsible-content').hide(); // hide all div with class .content by default
$('.mw-collapsible .down').hide(); // hide all div with class .content by default
$('.mw-collapsible .up').click(function() { // when the header is clicked which have class .header
$('.mw-collapsible .down').show();
$('.mw-collapsible .up').hide();
$(this).parent().find('.mw-collapsible-content').slideToggle(500); // div with class .content will be toggled
});
$('.mw-collapsible .down').click(function() { // when the header is clicked which have class .header
$('.mw-collapsible .up').show();
$('.mw-collapsible .down').hide();
$('.mw-collapsible .mw-collapsible-content').hide(); // div with class .content will be toggled
});
});