You can fire an event like this:
var brdyy = JXG.JSXGraph.initBoard('boxyy',{axis:false, boundingbox: [0, 28, 45, 0]});
brdyy.create("point", [15,15]);
brdyy.on("mousedown", function() {
var evt = document.createEvent("MouseEvents");
evt.initEvent("mouseup", true, true);
document.dispatchEvent(evt);
alert("click!");
});
This works on non-IE browsers. For a platform independent solution for firing events see e.g.
http://stackoverflow.com/questions/827716/emulate-clicking-a-link-with-javascript-that-works-with-ieBest wishes,
Alfred