Re: (ot) javascript problem

2008-07-12 Thread Sonny Savage
I use this: http://tredosoft.com/Multiple_IE You can install 3.0 through 6.0 as stand-alone. I then have IE 7 as my system install. On Fri, Jul 11, 2008 at 6:30 PM, Claude Schneegans < [EMAIL PROTECTED]> wrote: > >>You might want to take a look at IE7 stand alone. > > I will sure do. > Thanks.

Re: (ot) javascript problem

2008-07-11 Thread Claude Schneegans
>>You might want to take a look at IE7 stand alone. I will sure do. Thanks. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~~

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
You might want to take a look at IE7 stand alone. It allows you to run IE 6 and 7 on the same machine. http://tredosoft.com/IE7_standalone I need to support both IE 6 and 7. This allows you to run both side by side. Very handy. ~G~ On Fri, Jul 11, 2008 at 4:57 PM, Claude Schneegans < [EMAIL PR

Re: (ot) javascript problem

2008-07-11 Thread Claude Schneegans
>>Companion.JS that works with it was helpful in my case - not perfect but helpful. (Better than nothing, certianly.) I tried it, but unfortunately it requires the MS debugger, and for some reason, I've never been able to get this piece od &?%$! to work under IE6. All I get is a new window with

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
>>I haven't worked with DebugBar itself, yet, but Companion.JS that works with it was helpful in my case - not perfect but helpful. (Better than nothing, certianly.) If you are not already aware of it, the tool of choice for many developers is Firebug: http://getfirebug.com/ It is absolutely indi

RE: (ot) javascript problem

2008-07-11 Thread Stephens, Larry V
-Talk Subject: Re: (ot) javascript problem >>You can try this. http://www.debugbar.com/ Hi, are you using it yourself? I tried it, there are a lot of interesting options, however two main flaws: 1º the error message is still the same stupidity: - it does not give the true file name the e

Re: (ot) javascript problem

2008-07-11 Thread Claude Schneegans
>>Did you try CompanionJS? I think it is just what you need. Ah ha! Now this looks better ;-) Thanks. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) T

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
Did you try CompanionJS? I think it is just what you need. http://www.my-debugbar.com/wiki/CompanionJS/HomePage ~G~ On Fri, Jul 11, 2008 at 1:29 PM, Claude Schneegans < [EMAIL PROTECTED]> wrote: > >>Actually I have it installed but I rarely use IE except for cross > browser > css issues. >

Re: (ot) javascript problem

2008-07-11 Thread Claude Schneegans
>>Actually I have it installed but I rarely use IE except for cross browser css issues. I see. In my case, most my Javascript is used in my CMS used by administrators, and none of them use FF, so developing for IE is a must. -- ___ REUSE CODE! Use custom tag

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
Actually I have it installed but I rarely use IE except for cross browser css issues. (i.e. after I work out all the gremlins using Firebug). I have yet to run into a IE only JS bug. Here try CompanionJS. It is geared more toward JS debugging: http://www.my-debugbar.com/wiki/CompanionJS/HomePage

Re: (ot) javascript problem

2008-07-11 Thread Claude Schneegans
>>You can try this. http://www.debugbar.com/ Hi, are you using it yourself? I tried it, there are a lot of interesting options, however two main flaws: 1º the error message is still the same stupidity: - it does not give the true file name the error occurs, - it gives the line number, bu

RE: (ot) javascript problem

2008-07-09 Thread Stephens, Larry V
On Tue, Jul 8, 2008 at 6:42 AM, Stephens, Larry V wrote: > I'm using a DHTML javascript menu (from DynamicDrive) that works fine in > Mozilla (shows no errors in the error console). The sample works fine in IE > but my revision (no Thanks again for all the suggestions. I figured it out by taki

Re: (ot) javascript problem

2008-07-08 Thread denstar
Maybe: this.resizeTo(Wdth,Hght)} to this.resizeTo(Wdth,Hght); } and this.style.zIndex=RcrsLvl+Ztop} to this.style.zIndex=RcrsLvl+Ztop; } On Tue, Jul 8, 2008 at 11:53 AM, Stephens, Larry V <[EMAIL PROTECTED]> wrote: > On Tue, Jul 8, 2008 at 6:42 AM, Stephens, Larry V wrote: >> I'm using a

RE: (ot) javascript problem

2008-07-08 Thread Stephens, Larry V
On Tue, Jul 8, 2008 at 6:42 AM, Stephens, Larry V wrote: > I'm using a DHTML javascript menu (from DynamicDrive) that works fine in > Mozilla (shows no errors in the error console). The sample works fine in IE > but my revision (no Thanks for all the suggestions. I installed the debug bar that

Re: (ot) javascript problem

2008-07-08 Thread denstar
Look for a trailing comma in a javascript array perhaps? That one gets me in IE every once in a while. On Tue, Jul 8, 2008 at 6:42 AM, Stephens, Larry V wrote: > I'm using a DHTML javascript menu (from DynamicDrive) that works fine in > Mozilla (shows no errors in the error console). The sample

RE: (ot) javascript problem

2008-07-08 Thread Andy Matthews
IE JS errors suck...it's almost impossible to debug. Your best bet then is to start commenting out lines, or chunks, of code (including JS includes). At the very least it should help you narrow down your issue. You could also extract the content from your included files one at a time, and replace

Re: (ot) javascript problem

2008-07-08 Thread Loathe
The best means I have found of working out JS errors in IE is to create a project in Visual Web Developer 2008 (free). Launch the project which will open a browser window (IE needs to be set as your default browser) then navigate to your page. When the error occurs choose to debug the error,

RE: (ot) javascript problem

2008-07-08 Thread Stephens, Larry V
Thanks - installing now. -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2008 8:58 AM To: CF-Talk Subject: Re: (ot) javascript problem You can try this. http://www.debugbar.com/ On Tue, Jul 8, 2008 at 8:42 AM, Stephens, Larry V <[EMAIL PROTEC

Re: (ot) javascript problem

2008-07-08 Thread Claude Schneegans
>>Any clues on how to trace javascript errors in IE? Error messages in IE are simply retarded. The error could be in any file, and it does not even give the file name. Furthermore, the line number is always one unit higher. Then your error must be in one of the included files, at line 347. -- _

RE: (ot) javascript problem

2008-07-08 Thread Adrian Lynch
If things aren't working after you made a change, show us a before and after sample of the code. Adrian -Original Message- From: Stephens, Larry V [mailto:[EMAIL PROTECTED] Sent: 08 July 2008 13:43 To: CF-Talk Subject: (ot) javascript problem I'm using a DHTML javascript menu (from Dyna

Re: (ot) javascript problem

2008-07-08 Thread Gerald Guido
You can try this. http://www.debugbar.com/ On Tue, Jul 8, 2008 at 8:42 AM, Stephens, Larry V <[EMAIL PROTECTED]> wrote: > I'm using a DHTML javascript menu (from DynamicDrive) that works fine in > Mozilla (shows no errors in the error console). The sample works fine in IE > but my revision (no

RE: OT Javascript Problem

2004-11-22 Thread Phillip Perry
To: CF-Talk Subject: Re: OT Javascript Problem function CheckPass() { if ((document.process_member.pass.value) != (document.process_member.confirmit.value)){ alert("The passwords you entered do not match each other. Please try again.") re

Re: OT Javascript Problem

2004-11-22 Thread Ron Gowen
function CheckPass() { if ((document.process_member.pass.value) != (document.process_member.confirmit.value)){ alert("The passwords you entered do not match each other. Please try again.") return false; }else{

Re: OT Javascript Problem

2004-11-22 Thread Douglas Knudsen
also...missing a semicolon after the alert. function CheckPass() { if (document.process_member.pass.value != document.process_member.confirmit.value) { alert('"The passwords you entered do not match each other. Please try again."); return fals

Re: OT Javascript Problem

2004-11-22 Thread Ron Gowen
you have a single and a double qoute opening your alert message? and a double closing it On Mon, 22 Nov 2004 13:35:53 -0700, Charlie Griefer <[EMAIL PROTECTED]> wrote: > might want to try throwing an else in the function to alert('foo'); or > something...just to see if the function -is- being ca

Re: OT Javascript Problem

2004-11-22 Thread Charlie Griefer
might want to try throwing an else in the function to alert('foo'); or something...just to see if the function -is- being called but not catching the mismatched values for some reason. is this page online somewhere i can take a look at the full page? On Mon, 22 Nov 2004 15:29:56 -0500, Phillip