Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
<head>
  <title>JS Bin</title>
  <link href="http://code.jquery.com/qunit/qunit-1.18.0.css" rel="stylesheet"/>
</head>
<body>
  <div id="qunit"></div>
  <div id="qunit-fixture"></div>
  <script src="http://code.jquery.com/qunit/qunit-1.18.0.js"></script>
  <script>
    var clickIt = function(el){
            var event = document.createEvent('MouseEvents');
            event.initMouseEvent('click', true, true, window,
            1, 0, 0, 0, 0,
            false, false, false, false,
            0, null);
            el.dispatchEvent(event);
        };
    module('$ events');
    test('$.fn.bind', function(){
            expect(2);
            $('#qunit-fixture').html('<div id="el">text</div>');
            var handler = function(ev){
                equal(this.nodeName.toLowerCase(), 'div', 'event called on div');
                equal(ev.type, 'click', 'click event');
            }
            $('#el').bind('click',handler);
            clickIt( $('#el')[0] );
        });
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
alexisabrilpro
0viewers