JQuery Magic Wand

Simple yet powerful jQuery template

Interactive Demo

Click the buttons to see jQuery magic in action!

Code Example

// Simple fade effect
$("#fadeBtn").click(function() {
    $("#demoBox").fadeOut(500).fadeIn(500);
});