Skip to content

Instantly share code, notes, and snippets.

@theHamdiz
Created March 31, 2018 23:00
Show Gist options
  • Save theHamdiz/1922f43bef55880ad862d6fa751599bb to your computer and use it in GitHub Desktop.
Save theHamdiz/1922f43bef55880ad862d6fa751599bb to your computer and use it in GitHub Desktop.
copy the exact text of input to a div on change in js
function change(){
var show_div = document.getElementById("show_div");
var i = document.getElementById("i");
show_div.innerHTML = i.value.toUpperCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment