User:Relentlessly/hiderefs.js
if ($('.mw-ext-cite-cite_section_preview_references').length) {
$('#wikiPreview ol.references').each(function(i, ol) {
.css(
{
float: 'right',
display: 'block',
width: '8em',
background: '#ddd',
padding: '5px',
'text-align': 'center',
border: '1px solid blue',
'border-radius': '5px'
}
)
.text('Show/hide refs')
.click(function(e) {
$(ol).slideToggle();
e.preventDefault();
$(this).blur();
});
$(this).slideUp().before(button);
});
}