Mudanças entre as edições de "MediaWiki: Common.js"
De WikiAjuda
(Limpou toda a página) |
|||
Linha 1: | Linha 1: | ||
− | + | $(document).ready(function() { | |
+ | $(function() { | ||
+ | $('input[name="Artigo[title]"]').on('change', function() { | ||
+ | var $form = $(this).closest('form'); | ||
+ | $form.find('#catalogue').show(); | ||
+ | }); | ||
+ | }); | ||
+ | }); |
Edição das 10h59min de 29 de abril de 2017
$(document).ready(function() {
$(function() {
$('input[name="Artigo[title]"]').on('change', function() {
var $form = $(this).closest('form');
$form.find('#catalogue').show();
});
});
});