Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
    <head>
          <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
          <title>Bind test</title>
    </head>
    <body>
        <h1>Bind test!</h1>
        <div id="container">
        
        <button type="button" onclick="trigger();">Trigger!!!!</button>
        <input type="hidden" id="changed" value="" onchange="alert('inline onchange');" >
        </div>
    </body>
    <script type="text/javascript">
        $(function() {
           var newInput=$('<input type="hidden" id="changed" value="" onchange="alert(\'inline onchange\')">');
            //$("#container").append(newInput);
           $("#changed").bind("change",function(){alert("bind onchange");});
            });
        function trigger()
        {
            
            $("#changed").val(true);
            $("#changed").trigger("change");
        }
    </script>
</html>
Output

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

Dismiss x
public
Bin info
Lenijaspro
0viewers