Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2017 06:28
Show Gist options
  • Save anonymous/b7f6676a6031aa6c5f70bb4490b0fe3c to your computer and use it in GitHub Desktop.
Save anonymous/b7f6676a6031aa6c5f70bb4490b0fe3c to your computer and use it in GitHub Desktop.
Kqrxae
<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>
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