2006-11-18 14:37:01 +01:00
|
|
|
module("event");
|
|
|
|
|
2007-03-25 20:06:18 +02:00
|
|
|
test("bind()", function() {
|
2007-09-03 16:53:09 +02:00
|
|
|
expect(15);
|
2007-03-25 20:06:18 +02:00
|
|
|
|
|
|
|
var handler = function(event) {
|
|
|
|
ok( event.data, "bind() with data, check passed data exists" );
|
|
|
|
ok( event.data.foo == "bar", "bind() with data, Check value of passed data" );
|
2007-04-24 23:48:52 +02:00
|
|
|
};
|
2007-04-25 00:35:04 +02:00
|
|
|
$("#firstp").bind("click", {foo: "bar"}, handler).click().unbind("click", handler);
|
2007-09-09 01:31:23 +02:00
|
|
|
|
|
|
|
ok( !jQuery.data($("#firstp")[0], "events"), "Event handler unbound when using data." );
|
2007-03-25 20:06:18 +02:00
|
|
|
|
|
|
|
reset();
|
|
|
|
var handler = function(event, data) {
|
|
|
|
ok( event.data, "check passed data exists" );
|
|
|
|
ok( event.data.foo == "bar", "Check value of passed data" );
|
|
|
|
ok( data, "Check trigger data" );
|
|
|
|
ok( data.bar == "foo", "Check value of trigger data" );
|
2007-04-24 23:48:52 +02:00
|
|
|
};
|
2007-04-25 00:35:04 +02:00
|
|
|
$("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]).unbind(handler);
|
2007-04-22 07:13:33 +02:00
|
|
|
|
2007-04-25 00:35:04 +02:00
|
|
|
reset();
|
2007-04-24 23:48:52 +02:00
|
|
|
var handler = function(event) {
|
|
|
|
ok ( !event.data, "Check that no data is added to the event object" );
|
|
|
|
};
|
2007-04-25 00:35:04 +02:00
|
|
|
$("#firstp").bind("click", handler).trigger("click");
|
|
|
|
|
2007-04-24 23:48:52 +02:00
|
|
|
|
2007-07-20 23:53:37 +02:00
|
|
|
// events don't work with iframes, see #939 - this test fails in IE because of contentDocument
|
|
|
|
// var doc = document.getElementById("iframe").contentDocument;
|
|
|
|
//
|
|
|
|
// doc.body.innerHTML = "<input type='text'/>";
|
|
|
|
//
|
|
|
|
// var input = doc.getElementsByTagName("input")[0];
|
|
|
|
//
|
|
|
|
// $(input).bind("click",function() {
|
|
|
|
// ok( true, "Binding to element inside iframe" );
|
|
|
|
// }).click();
|
2007-04-22 07:13:33 +02:00
|
|
|
|
2007-03-25 20:06:18 +02:00
|
|
|
var counter = 0;
|
|
|
|
function selectOnChange(event) {
|
2007-04-22 05:16:53 +02:00
|
|
|
equals( event.data, counter++, "Event.data is not a global event object" );
|
2007-04-24 23:48:52 +02:00
|
|
|
};
|
2007-09-05 19:06:05 +02:00
|
|
|
$("#form select").each(function(i){
|
2007-03-25 20:06:18 +02:00
|
|
|
$(this).bind('change', i, selectOnChange);
|
|
|
|
}).trigger('change');
|
2007-09-03 16:53:09 +02:00
|
|
|
|
|
|
|
reset();
|
|
|
|
|
|
|
|
$("#firstp").bind("click",function(e){
|
|
|
|
ok(true, "Normal click triggered");
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#firstp").bind("click.test",function(e){
|
|
|
|
ok(true, "Namespaced click triggered");
|
|
|
|
});
|
|
|
|
|
|
|
|
// Trigger both bound fn (2)
|
|
|
|
$("#firstp").trigger("click");
|
|
|
|
|
|
|
|
// Trigger one bound fn (1)
|
|
|
|
$("#firstp").trigger("click.test");
|
|
|
|
|
|
|
|
// Remove only the one fn
|
|
|
|
$("#firstp").unbind("click.test");
|
|
|
|
|
|
|
|
// Trigger the remaining fn (1)
|
|
|
|
$("#firstp").trigger("click");
|
2007-03-25 20:06:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
test("click()", function() {
|
2007-07-21 03:04:59 +02:00
|
|
|
expect(4);
|
2007-04-22 05:16:53 +02:00
|
|
|
$('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
|
|
|
|
var close = $('spanx', this); // same with $(this).find('span');
|
|
|
|
ok( close.length == 0, "Context element does not exist, length must be zero" );
|
|
|
|
ok( !close[0], "Context element does not exist, direct access to element must return undefined" );
|
|
|
|
return false;
|
2007-03-25 20:06:18 +02:00
|
|
|
}).click();
|
|
|
|
|
|
|
|
$("#check1").click(function() {
|
|
|
|
ok( true, "click event handler for checkbox gets fired twice, see #815" );
|
2007-04-22 05:16:53 +02:00
|
|
|
}).click();
|
2007-07-21 03:04:59 +02:00
|
|
|
|
|
|
|
var counter = 0;
|
|
|
|
$('#firstp')[0].onclick = function(event) {
|
|
|
|
counter++;
|
|
|
|
};
|
|
|
|
$('#firstp').click();
|
|
|
|
ok( counter == 1, "Check that click, triggers onclick event handler also" );
|
2006-12-28 12:37:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test("unbind(event)", function() {
|
2007-03-01 05:54:51 +01:00
|
|
|
expect(6);
|
2006-12-28 12:37:07 +01:00
|
|
|
var el = $("#firstp");
|
|
|
|
el.click(function() {
|
|
|
|
ok( true, "Fake normal bind" );
|
|
|
|
});
|
|
|
|
el.click(function(event) {
|
|
|
|
el.unbind(event);
|
|
|
|
ok( true, "Fake onebind" );
|
|
|
|
});
|
|
|
|
el.click().click();
|
2007-02-25 20:36:29 +01:00
|
|
|
|
|
|
|
el.click(function() { return; });
|
|
|
|
el.unbind('click');
|
|
|
|
ok( !el[0].onclick, "Handler is removed" ); // Bug #964
|
2007-03-01 05:54:51 +01:00
|
|
|
|
|
|
|
el.click(function() { return; });
|
|
|
|
el.unbind('change',function(){ return; });
|
2007-09-09 01:31:23 +02:00
|
|
|
for (var ret in jQuery.data(el[0], "events")['click']) break;
|
2007-04-22 05:16:53 +02:00
|
|
|
ok( ret, "Extra handlers weren't accidentally removed." );
|
2007-03-01 05:54:51 +01:00
|
|
|
|
|
|
|
el.unbind('click');
|
2007-09-09 01:31:23 +02:00
|
|
|
ok( !jQuery.data(el[0], "events"), "Removed the events expando after all handlers are unbound." );
|
2006-12-28 12:37:07 +01:00
|
|
|
});
|
|
|
|
|
2007-08-30 18:34:34 +02:00
|
|
|
test("trigger(event, [data], [fn])", function() {
|
|
|
|
expect(40);
|
2007-08-30 07:51:11 +02:00
|
|
|
|
2006-12-28 12:37:07 +01:00
|
|
|
var handler = function(event, a, b, c) {
|
2007-08-30 07:51:11 +02:00
|
|
|
equals( event.type, "click", "check passed data" );
|
|
|
|
equals( a, 1, "check passed data" );
|
|
|
|
equals( b, "2", "check passed data" );
|
|
|
|
equals( c, "abc", "check passed data" );
|
|
|
|
return "test";
|
|
|
|
};
|
|
|
|
|
2007-08-30 18:34:34 +02:00
|
|
|
var handler2 = function(a, b, c) {
|
|
|
|
equals( a, 1, "check passed data" );
|
|
|
|
equals( b, "2", "check passed data" );
|
|
|
|
equals( c, "abc", "check passed data" );
|
|
|
|
return "test2";
|
|
|
|
};
|
|
|
|
|
2007-08-30 07:51:11 +02:00
|
|
|
// Simulate a "native" click
|
|
|
|
$("#firstp")[0].click = function(){
|
|
|
|
ok( true, "Native call was triggered" );
|
2007-04-24 23:48:52 +02:00
|
|
|
};
|
2007-08-30 07:51:11 +02:00
|
|
|
|
|
|
|
// Triggers handlrs and native
|
|
|
|
// Trigger 5
|
2006-12-28 12:37:07 +01:00
|
|
|
$("#firstp").bind("click", handler).trigger("click", [1, "2", "abc"]);
|
2007-08-30 07:51:11 +02:00
|
|
|
|
|
|
|
// Triggers handlers, native, and extra fn
|
2007-08-30 18:34:34 +02:00
|
|
|
// Triggers 8
|
|
|
|
$("#firstp").trigger("click", [1, "2", "abc"], handler2);
|
2007-08-30 07:51:11 +02:00
|
|
|
|
|
|
|
// Simulate a "native" click
|
|
|
|
$("#firstp")[0].click = function(){
|
|
|
|
ok( false, "Native call was triggered" );
|
|
|
|
};
|
|
|
|
|
|
|
|
// Trigger only the handlers (no native)
|
2007-08-30 18:34:34 +02:00
|
|
|
// Triggers 5
|
2007-08-30 07:51:11 +02:00
|
|
|
equals( $("#firstp").triggerHandler("click", [1, "2", "abc"]), "test", "Verify handler response" );
|
|
|
|
|
|
|
|
// Trigger only the handlers (no native) and extra fn
|
|
|
|
// Triggers 8
|
2007-08-30 18:34:34 +02:00
|
|
|
equals( $("#firstp").triggerHandler("click", [1, "2", "abc"], handler2), "test", "Verify handler response" );
|
|
|
|
|
|
|
|
// Build fake click event to pass in
|
2007-09-15 04:23:08 +02:00
|
|
|
var eventObj = jQuery.event.fix({ type: "foo", target: document.body });
|
2007-08-30 18:34:34 +02:00
|
|
|
|
|
|
|
// Trigger only the handlers (no native), with external event obj
|
|
|
|
// Triggers 5
|
2007-09-15 04:23:08 +02:00
|
|
|
equals( $("#firstp").triggerHandler("click", [eventObj, 1, "2", "abc"]), "test", "Verify handler response" );
|
2007-08-30 18:34:34 +02:00
|
|
|
|
|
|
|
// Trigger only the handlers (no native) and extra fn, with external event obj
|
|
|
|
// Triggers 9
|
2007-09-15 04:23:08 +02:00
|
|
|
equals( $("#firstp").triggerHandler("click", [eventObj, 1, "2", "abc"], handler), "test", "Verify handler response" );
|
2006-12-28 12:37:07 +01:00
|
|
|
});
|
|
|
|
|
2007-03-25 20:06:18 +02:00
|
|
|
test("toggle(Function, Function)", function() {
|
2007-03-25 12:34:03 +02:00
|
|
|
expect(4);
|
2007-03-25 20:06:18 +02:00
|
|
|
var count = 0,
|
|
|
|
fn1 = function(e) { count++; },
|
|
|
|
fn2 = function(e) { count--; },
|
|
|
|
preventDefault = function(e) { e.preventDefault() },
|
|
|
|
link = $('#mark');
|
2007-04-22 05:16:53 +02:00
|
|
|
link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click();
|
2007-03-25 20:06:18 +02:00
|
|
|
ok( count == 1, "Check for toggle(fn, fn)" );
|
|
|
|
|
2007-03-25 12:30:59 +02:00
|
|
|
var first = 0;
|
2007-03-25 12:34:03 +02:00
|
|
|
$("#simon1").one("click", function() {
|
2007-03-25 12:30:59 +02:00
|
|
|
ok( true, "Execute event only once" );
|
|
|
|
$(this).toggle(function() {
|
2007-03-25 20:06:18 +02:00
|
|
|
ok( first++ == 0, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
|
2007-03-25 12:30:59 +02:00
|
|
|
}, function() {
|
2007-03-25 20:06:18 +02:00
|
|
|
ok( first == 1, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
|
2007-03-25 12:30:59 +02:00
|
|
|
});
|
2007-03-25 12:34:03 +02:00
|
|
|
return false;
|
|
|
|
}).click().click().click();
|
2007-08-30 07:51:11 +02:00
|
|
|
});
|