I'm loading a .pdf file in a pop up window. I want to attach an event. The ready event works perfectly fine, but the other events do not. Why is this?
This works:
var destURL = "c:\mypdf.pdf;
$(window.open(destURL)).ready(handler);
This does not:
var destURL = "c:\mypdf.pdf;
$(window.open(destURL)).unload(handler);
At first I was thinking you cannot add jquery to a page that is really just a pdf document, but the fact that .ready is working makes me think otherwise. None of the other events work either, just .ready.