MediaWiki:Newarticleassistant-formscript
From Bulbanews, your community Pokémon newspaper.
Jump to navigationJump to search
/* */
$(document).ready(function() {
$('#bnSourcetype').change(function() {
$sourceType = $(this).val();
if ($sourceType == 'exclusive' || $sourceType == 'none') {
$('#bnSourcename').closest('tr').hide('blind');
$('#bnSourcelink').closest('tr').hide('blind');
} else {
$('#bnSourcename').closest('tr').show('blind');
$('#bnSourcelink').closest('tr').show('blind');
}
});
});
/*
*/