Jamie
0
Q:

how to create a element in jquery

var newDiv = $('<div>My new div</div>');  //create Div Element w/ jquery
$( "#someOtherElement" ).append(newDiv); //append new div somewhere
11
$('#someParent').append('<div>I am new here</div>');    
12
$('<div>hello</div>').appendTo('#parent');
3

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