Skip to content

Instantly share code, notes, and snippets.

@akira1908jp
Created September 28, 2013 06:32
Show Gist options
  • Save akira1908jp/6739128 to your computer and use it in GitHub Desktop.
Save akira1908jp/6739128 to your computer and use it in GitHub Desktop.
jqueryのdelegateサンプル
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>delegate demo</title>
<style>
p {
background: yellow;
font-weight: bold;
cursor: pointer;
padding: 5px;
}
p.over {
background: #ccc;
}
span {
color: red;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<p>Click me!</p>
<span></span>
<script>
$( "body" ).delegate( "p", "click", function() {
$( this ).after( "<p>Another paragraph!</p>" );
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment