Skip to content

Instantly share code, notes, and snippets.

@apanzerj
Created August 7, 2012 05:10
Show Gist options
  • Save apanzerj/3281849 to your computer and use it in GitHub Desktop.
Save apanzerj/3281849 to your computer and use it in GitHub Desktop.
Widget Stack JS
$j(document).ready(function() {
$j('#tray').css('display', 'none').css('position', 'relative');
$j('#showMe').click(function() {
$j('#tray').slideToggle();
$j('#show').toggle();
$j('#hide').toggle();
}).css('cursor', 'pointer');
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment