effect jquery

Solutions on MaxInterview for effect jquery by the best coders in the world

showing results for - "effect jquery"
Clarabelle
20 Jul 2016
1$("#demo").hide();      // sets to display: none
2$("#demo").show(200);   // shows hidden elemnt with animation (speed)
3$("#demo").toggle();    // toggle between show and hide
4
5$( "#element" ).hide( "slow", function() {  // hide with callback function
6console.log( "Animation complete." );
7});
8