Re: Javascript problem only, but....

2007-09-07 Thread Claude Schneegans
>>This summarises the situation: More specifically, I found this page which reports exactly the problem: http://www.quirksmode.org/bugreports/archives/2006/02/scrollTop_in_select_list_in_IE_is_always_0.html It is another problem due to the windowed nature of the select box in IE. No work around

Re: Javascript problem only, but....

2007-09-07 Thread Claude Schneegans
>>Hope this helps. Thanks, but not really. This apply to the document itself, the whole page, ie. the body. But what about a select box inside the page? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please s

Re: Javascript problem only, but....

2007-09-06 Thread James Holmes
This summarises the situation: http://www.quirksmode.org/js/doctypes.html And this is the latest info: http://www.quirksmode.org/viewport/compatibility.html Scrolling offset (How much the page has scrolled) var x,y; if (self.pageYOffset) // all except Explorer { x = self.pageXOffset;

Re: Javascript problem with IE

2007-07-18 Thread Claude Schneegans
>>Could that possibly be an IIS thing Yes it is; FF makes no problem. I've just found that the same problem was found by the FCK Editor developers. I'm implementing their solution int my own editor. Not really simple :-( Thanks. -- ___ REUSE CODE! Use cust

Re: Javascript problem with IE

2007-07-18 Thread Christopher Jordan
Could that possibly be an IIS thing (or Apache if that's what you're using)? I've never had IE put something other than what I told it to when I manipulate the DOM like that. Of course, I'm using jQuerythese days to accomplish this sort of thing, but even before that when I wasn'

RE: Javascript Problem

2004-11-23 Thread Pascal Peters
Assuming they have the same name: function getData(form) { for(var i=0;i -Original Message- > From: Issac Rosa [mailto:[EMAIL PROTECTED] > Sent: 22 November 2004 23:02 > To: CF-Talk > Subject: OT: Javascript Problem > > Sorry for the OT, but thought someone on here might have a quick

RE: Javascript Problem

2004-09-20 Thread Steff
Hi If is tranformed to in _javascript_, you get value by document.formu.age.value and compare it to empty value to send alert p.s. : I never use id I only use name i.e. : id="name_1">  become for me steff   -Message d'origine-   De : vishnu prasad [mailto:[EMAIL PROTECTED]   Envoyé :

Re: JavaScript problem - RESOLVED

2004-05-23 Thread Spectrum WebDesign
Thanx Greg... great job... works fine... i'm very happy! ;-) Thanx for your time. - Original Message - From: "Greg Landers" <[EMAIL PROTECTED]> Date: Sun, 23 May 2004 16:58:17 -0500 To: CF-Talk <[EMAIL PROTECTED]> Subject: Re: _javascript_ problem It appears that you have left out som

Re: JavaScript problem

2004-05-23 Thread Greg Landers
It appears that you have left out some quotes in your string construction. Instead of this: data = "" +    + "Depart " + i + ":" + "  + size=45 name="depart" + i + >"; Try this: data = "" +   "" + "Depart " + i + ":" + "  + size=45 name='depart" + i + "'>"; Than

RE: JavaScript problem

2004-05-23 Thread Philip Arnold
> From: Spectrum WebDesign > > I'm sorry to be posting OT... but I've got a _javascript_ > problem that's plaguing me. >   > This js script works fine... > > data = "" + "Depart " + i + " :" + spaces > + " > + inter + "'>"; > > Now, converting to use tables and after CSS give me an error: > >

Re: JavaScript problem

2004-05-23 Thread Greg Landers
Jillian, First make sure that there is a form named "adduser" in the parent window that opened the child window. If the form is named "adduser" ... try some different variations of this script: Instead of this:
function addUser(id)
{
window.opener.document.forms["adduser"].user_id.va

RE: Javascript problem

2001-02-27 Thread kwasi
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_000_01C0A0C2.5A29E9D0 Content-Type: text/plain; charset="iso-8859-1" Javascript wiping form values problem: ==

RE: javascript problem

2000-12-27 Thread cfxvx100
I would do away with the onload and the function and and allow. This way if Coldfusion has determined if a user is not logged in ten the Javascript will be executed on the fly. But if you think about the logic of your code. There will never be a session.userid because you delete it every time the

RE: javascript problem

2000-12-26 Thread Kevin J. Miller
0 3:59 PM To: CF-Talk Subject: RE: javascript problem I tried it and it still sends the pop-up part of the page into an infinite 'refresh/reload' loop >From: "Allan Pichler" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]>

RE: javascript problem

2000-12-26 Thread S R
I tried it and it still sends the pop-up part of the page into an infinite 'refresh/reload' loop >From: "Allan Pichler" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: javascript problem >Date

RE: javascript problem

2000-12-26 Thread Allan Pichler
Try this function openpopup(){ popwin=window.open("login.cfm","newWin","width=200,height=150,left=400, right=300") popwin.focus(); } Allan Pichler Machine Dreams Inc. -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 26, 2000 3:36 PM To:

RE: javascript problem

2000-12-26 Thread Warrick, Mark
Try surrounding the logic with a CFIF statement to exclude processing if the template name contains "login.cfm" and see what happens. Also, I'm not sure about the second javascript call you've got there - the focus call. That may have something to do with it. ---mark

RE: Javascript problem

2000-12-05 Thread CAlvarado
I might be wrong but at first glance i believe you need '()' after submit