This code is not working
var span = document.getElementById("span");
span.style.fontsize = "25px";
span.innerHTML = "String";
This code is not working
var span = document.getElementById("span");
span.style.fontsize = "25px";
span.innerHTML = "String";
JavaScript is case sensitive.
So, if you want to change the font size, you have to go:
span.style.fontSize = "25px";
fontsize
but it should provide fontSize
. "s" character of word "fontSize" should be capital. –
Psychoactive fontsize
somewhere, you'll get fontsize
listed. That has nothing to do with the .style.fontSize
, however. –
Antoneantonella <span id="span">HOI</span>
<script>
var span = document.getElementById("span");
console.log(span);
span.style.fontSize = "25px";
span.innerHTML = "String";
</script>
You have two errors in your code:
document.getElementById
-
This retrieves the element with an Id that is "span", you did not specify an id on the span-element.
Capitals in Javascript - Also you forgot the capital of Size.
try this:
var span = document.getElementById("span");
span.style.fontSize = "25px";
span.innerHTML = "String";
Please never do this in real projects😅:
document.getElementById("span").innerHTML = "String".fontsize(25);
<span id="span"></span>
I had the same problem, this was my original HTML:
<input id = "fsize" placeholder = "Font Size" type = "number">
</input>
<button id = "apfsizeid" onclick = "apfsize()"> Apply Font Size
</button>
<textarea id = "tarea"> Your Text
</textarea>
And this was my original JS:
function(apfsize) {
var fsize = document.getElementById("fsize").value;
var text = document.getElementById("tarea").innerHTML;
text.style.fontsize = fsize;
document.getElementById("tarea").innerHTML = text;
}
This is my new JS, and it seems to be working just fine:
function apfsize() {
var fsize = document.getElementById("fsize").value;
fsize = Number(fsize);
document.getElementById("tarea").style.fontSize = fsize + "px";
}
So for some reason, I had to add the little "px" at the very last as a string, and somehow it worked. I hope this helps :)
© 2022 - 2024 — McMap. All rights reserved.
span.style.fontSize = "25px";
– Legnica