A Pen by Alan Moore on CodePen.
-
-
Save kahunamoore/fc12af2c50d79b50d25dec2ace17b27d to your computer and use it in GitHub Desktop.
Kqrxae
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script> | |
<input onkeydown="doit(event)" /> | |
<div id="second-div">Second DIV</div> | |
<div data="x">Third div</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doit(x) | |
{ | |
//alert(x); | |
// alert(x.target); | |
var mydiv = document.getElementById("second-div"); | |
// jQuery(mydiv).hide(); | |
$("div").append("<span>x</span>"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment