I am deeply puzzled...
A day or so ago I posted a query about the use of idletimer attached to an element, so that events would or would not fire on activity/absence of activity in a particular element on a page, as follows:
$("#testme" ).on( "idle.idleTimer", function(event, elem, obj){ $("#test").html("I am very idle");});
$( "#testme" ).on( "active.idleTimer", function(event, elem, obj, triggerevent){ $("#test").html("not idle");});
$( "#testme" ).idleTimer(3000);
It seemed I had got this working: you can see it operating happily in http://jsfiddle.net/peterrr73/C3w7f/3. But when I paste this same code into a separate file and put it on the web it fails: you can see this at http://www.sd-editions.com/CantApp/index4.html. To make matters more puzzling: you can see at http://www.sd-editions.com/CantApp/index2.html that the idler is working when attached to the whole document.
What is going on? There are no errors reported when I go the online not-functioning instance.