/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//In the below example $("p").click(function(){ $(this).toggleClass("off"); }); var p; $("button").click(function(){ if ( p ) { p.appendTo("body"); p = null; } else { p = $("p").detach(); } });