jquery append button to element code example
Example 1: jquery append
$("p").append(" <b>Appended text</b>.");
Example 2: .append js
let parent = document.createElement("div")
parent.append("Some text")
console.log(parent.textContent) // "Some text"