MediaWiki:Newarticleassistant-formscript

From Bulbanews, your community Pokémon newspaper.
Revision as of 01:57, 19 August 2011 by Zhen Lin (talk | contribs) (Created page with "→‎<code>: $(document).ready(function() { $('#bnSourcetype').change(function() { $sourceType = $(this).val(); if ($sourceType == 'exclusive' || $sourceType == 'none') { ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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'); } }); }); /* */