Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

How do you dynamically add a paragraph with stylized content to a page?

user-image
Question ajoutée par Feras Abualrub , Web Solutions Manager , Qistas for Information Technology
Date de publication: 2015/04/23
venkata Gowtham Vishnubotla
par venkata Gowtham Vishnubotla , Internship , Infosys Ltd

newParagraph = document.createElement(‘p’); newParagraph.setAttribute(‘class’, ‘myClass’); newText = document.createTextNode(‘this is a new paragraph’); newParagraph.appendChild(newText); myLocation = document.getElementById(‘parent_of_new_paragraph); myLocation.appendChild(newParagraph)

More Questions Like This