Guest User

Untitled

a guest
Feb 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <input id="che1" name="che1" type="checkbox" onchange="onChange('Hello world')">
  2. <div class="innerHere"></div>
  3. <script>
  4. function onChange(someText) {
  5. document.querySelector(".innerHere").innerHTML = someText;
  6. }
  7. </script>
Add Comment
Please, Sign In to add comment