Horje
how to display javascript variable value in html page Code Example
html use js variable as text

<h1>"My number: " <span id="myText"></span></h1>

<script>

	//You can use an IIFE (Immediately Invoked Function Expression)
	(() => {
  		var number = "123";
		document.getElementById("myText").innerHTML = number;
	})();
</script>
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>
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());
});




Javascript

Related
notify.js Code Example notify.js Code Example
javaScript disable submit button until form is fully validated Code Example javaScript disable submit button until form is fully validated Code Example
how sum all array element with for Code Example how sum all array element with for Code Example
moment js date between two dates Code Example moment js date between two dates Code Example
timezone in react js Code Example timezone in react js Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7