$("p").click(function(){
$(".Part1 p").html("some new text that will replace what <br /> was in the paragraph. <p> and a paragraph </p>");
});
Edit: added ); to the end for clarity.
When I try to put html tags in my strings it either doesn't show up at all as is the case of <br /> or it breaks the script and I get an error as is the case of </p>
How can I added html tags to strings so that I can have my text formatted the way I want but still make dynamic changes?