Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-git2.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  To do
<ul id="to-do">
    <li>Feed the cat</li>
    <li>Clean the house</li>
    <li>Buy milk</li>
    <li>Learn JQuery</li>
</ul>
  
Done
<ul id="done">
</ul>
        
</body>
</html>
 
$("#to-do li").click(function(){
    // $("#done li") evnt is firing here
    alert("I'm to-do li");
    $(this).appendTo("#done");
});
$("#done li").on('click', function(){
    //event not fired
    alert("I'm done li");
    $(this).appendTo("#to-do");
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers