Is there anything in jQuery to do the following?
document.getElementById('ejemplo').innerHTML+= '<div> HTML de ejemplo </div>'
Is there anything in jQuery to do the following?
document.getElementById('ejemplo').innerHTML+= '<div> HTML de ejemplo </div>'
You can use the function append()
$("#ejemplo").append("<div> HTML de ejemplo </div>");