Судя по содержанию и комментарию:
<!-- Pattern background preview. Thanks to Johannes Gorset for sitting down with me on this one -->
Этот скрипт авторская разработка Johannes Gorset
Немного jQuery и следующий скрипт делают это колдовство.
<script>
$(document).ready(function(){
$('.preview').each(function(){
$(this).bind('click', function(e){
var default_background = 'url(http://subtlepatterns.com/images/bgnoise.gif)'
var preview_background = 'url(' + $(e.target).closest('.entry-content').find('.download').attr('href') + ')'
// Turn on preview
if($(this).text() == 'Preview'){
$('.preview').text('Preview')
$(this).text('Stop the preview!')
$('body').css('background', preview_background)
if($(this).parents(".post").hasClass("tag-dark"))
{
$("body").addClass("dark-background");
}
else
{
$('body').removeClass("dark-background");
}
// Turn off preview
}else if($(this).text() == 'Stop the preview!'){
console.log("Disable");
$(this).text('Preview');
$('body').css('background', default_background);
$('body').removeClass("dark-background");
}
})
})
})
</script>
да видел этот код в странице, но надеялся что все-таки это плагин)
буду пытаться сделать нечто подобное…