$(function() { $("body").click(function(event) { $(event.target).contents().filter(function() { return this.nodeType == 3; }) .wrap('<p></p>') }); });