Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 14th, 2005, 07:31 AM
Friend of Wrox
 
Join Date: May 2004
Posts: 212
Thanks: 0
Thanked 0 Times in 0 Posts
Default Scrollbar Problem

Hello,

I am opening a HTML file in a new window with the script below. The scrollbars won't appear though!

function openFinish(){
var theUser = parent.opener.form1.userID.value

window.open('P:\\path\\patha\\blah\\blah\\blah\\bl ah\\' + theUser + '.html', scrollbars=1,height=document.body.clientHeight,width=document. body.clientWidth)
}

Any ideas? Goin nuts here!

Cheers
Joe


__________________
\'sync\' <cr>
The name specified is not recognized as an internal or external command, operable program or batch file.
 
Old August 15th, 2005, 11:12 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

The features list takes a string:
Code:
"scrollbars=1,height=" + document.body.clientHeight + ",width=" + document.body.clientWidth
--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
SCROLLBAR help! Please! Sickopuppie Dreamweaver (all versions) 0 June 13th, 2006 03:06 AM
scrollbar aytacakin Pro JSP 0 December 29th, 2005 05:33 AM
problem with scrollbar and a table header touyets CSS Cascading Style Sheets 2 August 29th, 2005 12:18 AM
problem with scrollbar and a table header touyets HTML Code Clinic 0 August 25th, 2005 06:45 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.