In Javascript, if you do the following:
var measures = Jiffy.getMeasures();
then you can access the measures like this:
for(var i=0; i<measures.length; i++) {
var m = measures[i];
alert("Mark: " +
m.name + ", Event: " + m.evt + ", Elapsed Time: "
+
m.et + ", Mark Start Time: " + m.rt);
}
As far as iframes, javascript can't go across iframes.
On the delay, that is not easy to solve. I am going to set the delay
as a configuration property for firefox. That way if you have slow
pages loading you can bump it up to a higher number.
--
Bill