sub_zero
May 22nd, 2001, 06:35 PM
suppose you have the source for index.html:
<html>
<head>
<script language="javascript">
function openWindow(theURL)
{
window.open(theURL,'demo','status=yes,scrollbars=no,width=525,height=430');
}
</script>
</head>
<body onload="javascript:openWindow('blah.html');">
</body>
</html>
it opens a new specially-sized window for blah.html. at the command line you could then run:
> iexplore index.html
i want to bypass the intermediate index.html page, and be able to just popup blah.html in its specially sized window straight from the command line. i.e., i want to do something like:
> iexplore blah.html
and have the equivalent of loading up index.html, just without index.html ever loading. does that make sense?
anyway, is there a way to do such a thing from the command line?
<html>
<head>
<script language="javascript">
function openWindow(theURL)
{
window.open(theURL,'demo','status=yes,scrollbars=no,width=525,height=430');
}
</script>
</head>
<body onload="javascript:openWindow('blah.html');">
</body>
</html>
it opens a new specially-sized window for blah.html. at the command line you could then run:
> iexplore index.html
i want to bypass the intermediate index.html page, and be able to just popup blah.html in its specially sized window straight from the command line. i.e., i want to do something like:
> iexplore blah.html
and have the equivalent of loading up index.html, just without index.html ever loading. does that make sense?
anyway, is there a way to do such a thing from the command line?