Trying this but have a problem.
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("p").append(" $comment");
});
$("#btn2").click(function(){
$("ol").append("<li>Appended item</li>");
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
<button id="btn1">Append text</button>
<button id="btn2">Append list item</button>
You see I want to append $comment which I can see with php echo $comment
I have not been able to attached the comment text tried all I can think of the variables do not appear to be seen in the code.
I really just want to do the append without the button action so that it flows into the next code..
Any help would be appreciated as I could not find an append code in PHP?