Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to create HTML tag element with JavaScript

2 Answers

0 votes
<!DOCTYPE html>
<html>
  
<head>
<style>
#div-id {
    background-color: cornflowerblue;
    width: 120px;
    height: 20px;
    padding: 10px;
}
</style>
</head>
  
<body>

<div id="div-id"></div>

<script>
 
var p = document.createElement("p");
var textnode = document.createTextNode("text in p tag");
p.appendChild(textnode);

var div_id = document.getElementById("div-id");
div_id.appendChild(p);

/*
run:
  
<p>text in p tag</p> as a child of div-id
  
*/

</script>

</body>
  
</html>

 



answered Jul 10, 2015 by avibootz
edited Jul 11, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
  
<head>
<style>
#div-id {
    background-color: cornflowerblue;
    width: 120px;
    height: 20px;
    padding: 10px;
}
</style>
</head>
  
<body>

<div id="div-id"></div>

<script>
 
var p = document.createElement("p");
var textnode = document.createTextNode("text in p tag");
p.appendChild(textnode);

document.getElementById("div-id").appendChild(p);

/*
run:
  
<p>text in p tag</p> as a child of div-id
  
*/

</script>


</body>
  
</html>

 



answered Jul 10, 2015 by avibootz
edited Jul 11, 2015 by avibootz

Related questions

1 answer 275 views
2 answers 387 views
1 answer 447 views
1 answer 304 views
2 answers 386 views
...