Answers for "display variable in html"

20

how to print to console javascript

console.log("string")
Posted by: Guest on February-13-2020
1

how to print the value of variable in javascript in html

var name="kieran";
document.getElementById("output").innerHTML=name;

and the html code would be: 

<p id="output"></p>
Posted by: Guest on September-24-2020
2

javascript print

document.write("Hello world");
Posted by: Guest on October-08-2020
0

how to display javascript variable value in html page

// Plain Javascript Example
var $jsName = document.querySelector('.name');
var $jsValue = document.querySelector('.jsValue');

$jsName.addEventListener('input', function(event){
  $jsValue.innerHTML = $jsName.value;
}, false);


// JQuery example
var $jqName = $('.name');
var $jqValue = $('.jqValue');

$jqName.on('input', function(event){
  $jqValue.html($jqName.val());
});
Posted by: Guest on December-16-2020

Code answers related to "display variable in html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language