0
Q:

jquery create element

var newDiv = $('<div>My new div</div>');  //create Div Element w/ jquery
$( "#someOtherElement" ).append(newDiv); //append new div somewhere
11
$("p").after(" <b>You can write your Text Here </b>.");
2
<!--You can insert Jquery into HTML with the <script> tag in the <head>-->
<!--Insert the next line of code into your <head> tags.-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <!-- jquery (help with javascript) -->
2
$('<div>hello</div>').appendTo('#parent');
3
$("p").append(" <b>You can write your Text Here </b>.");
2

function appendText()
{

  var txt1 = "<p>Text.</p>";               
// Create element with HTML  

  var txt2 = $("<p></p>").text("Text.");   // Create with jQuery

  var txt3 = document.createElement("p");  // Create with DOM

  txt3.innerHTML = "Text.";

   
$("body").append(txt1, txt2, txt3);      // Append the new elements 

} 
-1

New to Communities?

Join the community