- jQuery Reveal elements after hidden
- $('#hide').click(function(){
- $('body > :not(#reveal)').not(this).hide();
- $("#test1").add(this).appendTo("body");
- });
- $('#reveal').click(function(){
- $('body').show();
- });
- $('#reveal').click(function(){
- $('body').children().show();
- // or $('body > *').show();
- });