I want to create dynamically a button with css symbol as caption.
I want to put a small arrow.
I try this, without success:
let btnDel = document.createElement("input");
btnDel.type = "button";
btnDel.value = "⇧";
A nudge ?
Best regards
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I want to create dynamically a button with css symbol as caption.
I want to put a small arrow.
I try this, without success:
let btnDel = document.createElement("input");
btnDel.type = "button";
btnDel.value = "⇧";
A nudge ?
Best regards