3 test("bind()", function() {
6 var handler = function(event) {
7 ok( event.data, "bind() with data, check passed data exists" );
8 ok( event.data.foo == "bar", "bind() with data, Check value of passed data" );
10 $("#firstp").bind("click", {foo: "bar"}, handler).click().unbind("click", handler);
12 ok( !$("#firstp").get(0).$events, "Event handler unbound when using data." );
15 var handler = function(event, data) {
16 ok( event.data, "check passed data exists" );
17 ok( event.data.foo == "bar", "Check value of passed data" );
18 ok( data, "Check trigger data" );
19 ok( data.bar == "foo", "Check value of trigger data" );
21 $("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]).unbind(handler);
24 var handler = function(event) {
25 ok ( !event.data, "Check that no data is added to the event object" );
27 $("#firstp").bind("click", handler).trigger("click");
30 // events don't work with iframes, see #939 - this test fails in IE because of contentDocument
31 // var doc = document.getElementById("iframe").contentDocument;
33 // doc.body.innerHTML = "<input type='text'/>";
35 // var input = doc.getElementsByTagName("input")[0];
37 // $(input).bind("click",function() {
38 // ok( true, "Binding to element inside iframe" );
42 function selectOnChange(event) {
43 equals( event.data, counter++, "Event.data is not a global event object" );
45 $("select").each(function(i){
46 $(this).bind('change', i, selectOnChange);
50 test("click()", function() {
52 $('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
53 var close = $('spanx', this); // same with $(this).find('span');
54 ok( close.length == 0, "Context element does not exist, length must be zero" );
55 ok( !close[0], "Context element does not exist, direct access to element must return undefined" );
59 $("#check1").click(function() {
60 ok( true, "click event handler for checkbox gets fired twice, see #815" );
64 $('#firstp')[0].onclick = function(event) {
68 ok( counter == 1, "Check that click, triggers onclick event handler also" );
71 test("unbind(event)", function() {
73 var el = $("#firstp");
75 ok( true, "Fake normal bind" );
77 el.click(function(event) {
79 ok( true, "Fake onebind" );
83 el.click(function() { return; });
85 ok( !el[0].onclick, "Handler is removed" ); // Bug #964
87 el.click(function() { return; });
88 el.unbind('change',function(){ return; });
89 for (var ret in el[0].$events['click']) break;
90 ok( ret, "Extra handlers weren't accidentally removed." );
93 ok( !el[0].$events, "Removed the events expando after all handlers are unbound." );
96 test("trigger(event, [data], [fn])", function() {
99 var handler = function(event, a, b, c) {
100 equals( event.type, "click", "check passed data" );
101 equals( a, 1, "check passed data" );
102 equals( b, "2", "check passed data" );
103 equals( c, "abc", "check passed data" );
107 var handler2 = function(a, b, c) {
108 equals( a, 1, "check passed data" );
109 equals( b, "2", "check passed data" );
110 equals( c, "abc", "check passed data" );
114 // Simulate a "native" click
115 $("#firstp")[0].click = function(){
116 ok( true, "Native call was triggered" );
119 // Triggers handlrs and native
121 $("#firstp").bind("click", handler).trigger("click", [1, "2", "abc"]);
123 // Triggers handlers, native, and extra fn
125 $("#firstp").trigger("click", [1, "2", "abc"], handler2);
127 // Simulate a "native" click
128 $("#firstp")[0].click = function(){
129 ok( false, "Native call was triggered" );
132 // Trigger only the handlers (no native)
134 equals( $("#firstp").triggerHandler("click", [1, "2", "abc"]), "test", "Verify handler response" );
136 // Trigger only the handlers (no native) and extra fn
138 equals( $("#firstp").triggerHandler("click", [1, "2", "abc"], handler2), "test", "Verify handler response" );
140 // Build fake click event to pass in
141 var eventObj = jQuery.event.fix({ type: "click", target: document.body });
143 // Trigger only the handlers (no native), with external event obj
145 equals( $("#firstp").triggerHandler("foo", [eventObj, 1, "2", "abc"]), "test", "Verify handler response" );
147 // Trigger only the handlers (no native) and extra fn, with external event obj
149 equals( $("#firstp").triggerHandler("foo", [eventObj, 1, "2", "abc"], handler), "test", "Verify handler response" );
152 test("toggle(Function, Function)", function() {
155 fn1 = function(e) { count++; },
156 fn2 = function(e) { count--; },
157 preventDefault = function(e) { e.preventDefault() },
159 link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click();
160 ok( count == 1, "Check for toggle(fn, fn)" );
163 $("#simon1").one("click", function() {
164 ok( true, "Execute event only once" );
165 $(this).toggle(function() {
166 ok( first++ == 0, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
168 ok( first == 1, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
171 }).click().click().click();