![]() |
|
|
+ Search |
![]()
|
Aug 29th, 2000 10:11
Martin Honnen, Raj,
You cannot really do that with client side JavaScript. One attempt to
print all linked documents would be to open up a window for every link
and print the window:
var wins = new Array(document.links.length);
for (var i = 0; i < document.links.length; i++) {
wins[i] = open(document.links[i]);
setTimeout('wins[' + i + '].print()', 2000);
}