views:

14

answers:

1

Hi,

I found an example that shows how to load a website in an iframe using jquery, link My question is, is it possible to get a timestamp of the opening and closing event of dialog that displays the iframe?

+1  A: 

Yes, inside .dialog({ }) you can handle the open and close events, and get the current time.

See: http://jqueryui.com/demos/dialog/#event-open for usage examples of those events.

TimS
thanks, that works:)
ArtWorkAD