vj12
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

vj12.js
application/javascript

Download raw (209 bytes)

$(document).ready(function(){
    $("#toc").toggle(function(){
        console.log('ok');
        $('nav[role="navigation"]').show();
    }, function(){
        $('nav[role="navigation"]').hide();
    });
});