With help from you I recently put this statement in for a stop method.
if (document.all) {
document.getElementById("iframe_id").document.execcommand("stop");
} else {
window.stop();
}
My next question, as I always seem to have one, is what should be in place of iFrame_id The statement works to stop the page but then I get an error telling me that iFrame_id is undefined.
if (document.all) {
document.getElementById("iframe_id").document.execcommand("stop");
} else {
window.stop();
}
My next question, as I always seem to have one, is what should be in place of iFrame_id The statement works to stop the page but then I get an error telling me that iFrame_id is undefined.