$("p").live({ click: function() { $(this).after("
Another paragraph!
"); }, mouseover: function() { $(this).addClass("over"); }, mouseout: function() { $(this).removeClass("over"); } });