I want to replace the innerHTML of a div with id regTitle using jQuery. In plain JavaScript, I do:
document.all.regTitle.innerHTML = ‘Hello World’; How can I achieve the same using jQuery?
I want to replace the innerHTML of a div with id regTitle using jQuery. In plain JavaScript, I do:
document.all.regTitle.innerHTML = ‘Hello World’; How can I achieve the same using jQuery?