Re: (ot) Javascript Help

2009-07-09 Thread Dave Watts
> Someone told me that IE cannot talk to an embed tag, only an object tag, but > I believe > the ID vs NAME issue is tripping me up. I don't think IE uses the EMBED tag at all. Give your OBJECT an ID of its own, and use that when you're in IE. Dave Watts, CTO, Fig Leaf Software http://www.figle

Re: (ot) Javascript Help

2009-07-09 Thread James Holmes
There's probably something in jquery that'll do it on one line of cross browser code... mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/7/9 Michael Muller : > > Ok, I need some Javascript help. > > I just cannot get this script (residing in an iframe)... > >

(ot) Javascript Help

2009-07-09 Thread Michael Muller
Ok, I need some Javascript help. I just cannot get this script (residing in an iframe)... parent.thisMovie('studio_loader_embed').reloadClipart(); parent.thisMovie('studio_loader_embed').showTab(2); ...to go through this script... function thisMovie(movieName) { if (navigator.appName.ind

RE: (ot) javascript help

2008-06-11 Thread Chad Gray
Ah... that makes sense. Thanks everyone for the help! > -Original Message- > From: Greg Morphis [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 11, 2008 1:39 PM > To: CF-Talk > Subject: Re: (ot) javascript help > > because isn't an element of ? > try rem

Re: (ot) javascript help

2008-06-11 Thread Josh Nathanson
to be. -- Josh - Original Message - From: "Chad Gray" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, June 11, 2008 10:34 AM Subject: (ot) javascript help > Can any javascript gurus tell me why this does not work? I want the > tag to display on t

RE: (ot) javascript help

2008-06-11 Thread Andy Matthews
bject: (ot) javascript help Can any javascript gurus tell me why this does not work? I want the tag to display on the page so I get a carriage return between the two pieces of text "Foo" and "Moo". I get this error in Firbug: document.tabbedTicket.FTDTYPEe has no prope

RE: (ot) javascript help

2008-06-11 Thread Dawson, Michael
I may be way off-base, but do you need that trailing "e" in "FTDTYPEe"? Could it be the missing "e" from "Firbug"? m!ke On Wed, Jun 11, 2008 at 10:34 AM, Chad Gray <[EMAIL PROTECTED]> wrote: > Can any javascript gurus tell me why this does not work? I want the tag to display on the page so I ge

Re: (ot) javascript help

2008-06-11 Thread Greg Morphis
because isn't an element of ? try removing the tabbedTicket or use getElementById On Wed, Jun 11, 2008 at 12:34 PM, Chad Gray <[EMAIL PROTECTED]> wrote: > Can any javascript gurus tell me why this does not work? I want the tag > to display on the page so I get a carriage return between the two

Re: (ot) javascript help

2008-06-11 Thread Barney Boisvert
try document.getElementById("FTDTYPEe"). And then go get some library that will take care of all that for you (jQuery, Prototype, etc.). cheers, barneyb On Wed, Jun 11, 2008 at 10:34 AM, Chad Gray <[EMAIL PROTECTED]> wrote: > Can any javascript gurus tell me why this does not work? I want the

(ot) javascript help

2008-06-11 Thread Chad Gray
Can any javascript gurus tell me why this does not work? I want the tag to display on the page so I get a carriage return between the two pieces of text "Foo" and "Moo". I get this error in Firbug: document.tabbedTicket.FTDTYPEe has no properties function makeNewEntry() { document.tabbedTic

OT: javascript help

2007-05-29 Thread Dan Munez
hey guys i have a little window with a link on it opened up a popup window and gave it a name. the new window also has frames in it. I would like to manipulate the forms in that frame, like giving it certain values and stuff, by calling it from the little window. how do I do that? so far i a

RE: OT: Javascript help

2006-04-20 Thread Ben Nadel
Test)); Thanks for everyone's help. I think I now see the local scoping issue that I was dealing with before. I will try to return with a better example. ... Ben Nadel www.bennadel.com -Original Message- From: Tanguy Rademakers [mailto:[EMA

RE: OT: Javascript help

2006-04-20 Thread Ben Nadel
adding data to an object that doesn't inherently have that attribute. ... Ben Nadel www.bennadel.com -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 1:00 PM To: CF-Talk Subject: Re: OT: Javascript help Asking yo

Re: OT: Javascript help

2006-04-20 Thread Tanguy Rademakers
Hi Ben, I ran into this problem recently - these really helped me out: http://joust.kano.net/weblog/archive/2005/08/08/a-huge-gotcha-with-javascript-closures and http://jibbering.com/faq/faq_notes/closures.html /t ~| Message:

Re: OT: Javascript help

2006-04-20 Thread Cutter (CFRelated)
Asking your question of my javascipt list, the responses were as follows: Repsonse 1 Have you tried this? objA.onclick = new Function ("alert(" + intI + ")" ); Response 2 >for (var intI = 0 ; intI < 10 ; intI++){ >> var objA = document.createElement( "div" ); Place one "var objA;"

RE: OT: Javascript help

2006-04-20 Thread Ben Nadel
el www.bennadel.com -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 10:31 AM To: CF-Talk Subject: Re: OT: Javascript help the most I can think of is to evaluate the value right at the function declaration: objA.onclick = eval ('fu

Re: OT: Javascript help

2006-04-20 Thread Zaphod Beeblebrox
the most I can think of is to evaluate the value right at the function declaration: objA.onclick = eval ('function(){ alert( ' + intI + ' ); };'); On 4/20/06, Ben Nadel <[EMAIL PROTECTED]> wrote: > > Not really for CF, but though someone here could lend some insight > > There is one problem

OT: Javascript help

2006-04-20 Thread Ben Nadel
Not really for CF, but though someone here could lend some insight There is one problem in Javascript that I cannot seem to get a handle on and it is killling me! I can't seem to get variables to pass by value as I would hope. Take the following example: for (var intI = 0 ; intI < 10 ; intI+

OT: Javascript help.

2005-12-06 Thread J W
I have been beating my head around for the better part of today trying to figure this out.. I am prefilling a textarea with some information. When the page loads, I would like to set focus to the text area and have the cursor position set to the first character in the textarea with the prefilled

RE: Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
Thanks Isaac, I'll file both of those away - great ideas. -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:47 AM To: CF-Talk Subject: RE: Slight OT: JavaScript Help Just as an FYI, you can also use window.opener.location.r

RE: Slight OT: JavaScript Help

2002-09-12 Thread S . Isaac Dealey
[EMAIL PROTECTED]] > Sent: Thursday, September 12, 2002 8:54 AM > To: CF-Talk > Subject: RE: Slight OT: JavaScript Help > I think it is something like > window.opener.location=('yourlocation.cfm'); > -Original Message- > From: Mark A. Kruger - CFG [mailto:[E

RE: Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
Kris - thanks. I'll give it a try. -mk -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:26 AM To: CF-Talk Subject: RE: Slight OT: JavaScript Help var callerWindowObj = dialogArguments; callerWindowObj.r

RE: Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
Charlie, Thanks a lot. I appreciate the help from sunny AZ. -mk -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:26 AM To: CF-Talk Subject: Re: Slight OT: JavaScript Help - Original Message - From: "Mark A. Kruger

RE: Slight OT: JavaScript Help

2002-09-12 Thread Kris Pilles
rom: Charlie Griefer [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:26 AM To: CF-Talk Subject: Re: Slight OT: JavaScript Help - Original Message - From: "Mark A. Kruger - CFG" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursda

Re: Slight OT: JavaScript Help

2002-09-12 Thread Charlie Griefer
- Original Message - From: "Mark A. Kruger - CFG" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, September 12, 2002 7:17 AM Subject: RE: Slight OT: JavaScript Help > Ok - how would I do that? could I use the window.opener obje

RE: Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
ml: My pet shop - I have to be able to set both of these items. I'm sure it's possible, but I've not done it before. -mk -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 8:56 AM To: CF-Talk Subject: RE: Slight OT: JavaScript He

RE: Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
You get the Guru trophy of the day (I think it's a 9 year old twinkie). That is exactly what I needed. -mk -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 8:54 AM To: CF-Talk Subject: RE: Slight OT: JavaScript Help I think

RE: Slight OT: JavaScript Help

2002-09-12 Thread Kris Pilles
Why do you want to refresh the window? Why not just have javascript pass the values back to the form and close the top window? -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:45 AM To: CF-Talk Subject: Slight OT: JavaScript

RE: Slight OT: JavaScript Help

2002-09-12 Thread Bryan F. Hogan
I think it is something like window.opener.location=('yourlocation.cfm'); -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:45 AM To: CF-Talk Subject: Slight OT: JavaScript Help Folks, Some JavaScript guru out

Slight OT: JavaScript Help

2002-09-12 Thread Mark A. Kruger - CFG
Folks, Some JavaScript guru out there can answer this in a second. I have a form window with a link that "pops up" a simple form to add some piece or pieces of data to a lookup table. When the user is done adding, I want them to click a button and have the window close - and the page behind it

Re: OT: JavaScript Help - PLEASE!

2002-08-09 Thread S . Isaac Dealey
I would probably use a multi-file RegularExpression replacement in ColdFusion studio ... be very careful tho... and replace all the references to document.form[0] with document.myformname and give form[0] the name it needs... the regex I'm sure will only be necessary for adding the form name, beca

Re: OT: JavaScript Help - PLEASE!

2002-08-09 Thread Critter
oi Christian!! might be..dunno..I'd just do a global search and replace in studio. and rename it [1] -- Critz Macromedia Certified Advanced ColdFusion Developer Friday, August 9, 2002, 10:32:03 AM, you wrote: CA> Folks: CA> I'm in a bit of a

OT: JavaScript Help - PLEASE!

2002-08-09 Thread Christian Abad
Folks: I'm in a bit of a quandary here, and was hoping that some if the brilliant minds on this list could offer some insight. Problem: We have hundreds of pages that (unfortunately) refer to a form by document.form[0]. We are now attempting to add a form to the top of the page, thus making it

Re: OT: Javascript help

2002-07-02 Thread Alex
www.irt.org On Tue, 2 Jul 2002, Kris Pilles wrote: > I need som help with Frames and javascript... > > I want to make a form field in frame zero to become active when my login > is completed in frame 2 > > Please help > > > -Original Message- > From: peter [mailto:[EMAIL PROTECTED]]

OT: Javascript help

2002-07-02 Thread Kris Pilles
I need som help with Frames and javascript... I want to make a form field in frame zero to become active when my login is completed in frame 2 Please help -Original Message- From: peter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 11:03 AM To: CF-Talk Subject: setdomain

RE: OT Javascript Help

2002-06-14 Thread Joshua Tipton
: OT Javascript Help Not sure about other browsers, but in IE you can use or if you're already past the body tag I believe it's window.onresize = location.reload; note that there are no () parenthesis in the 2nd case ... Out of curiosity ... Why are you wanting to reload the documen

Re: OT Javascript Help

2002-06-14 Thread S . Isaac Dealey
Not sure about other browsers, but in IE you can use or if you're already past the body tag I believe it's window.onresize = location.reload; note that there are no () parenthesis in the 2nd case ... Out of curiosity ... Why are you wanting to reload the document when the window resizes? Do you

OT Javascript Help

2002-06-14 Thread Joshua Tipton
reload(); This is a shot in the dark on my part. I would like for the page to reload if the user resizes the screen in any way. Please help. Joshua Tipton __ This list and al

Re: OT: Javascript Help

2002-01-10 Thread Dick Applebaum
theDate = new Date(); myMinutes = 5 + theDate.getMinutes(); At 1:35 PM -0500 1/10/02, clint wrote: >I know this is off topic, but it kinda isn't. > >Can someone show me how to add 5 minutes to now in javascript? > >I am having a hard time finding how to do this. > >Thanks! > > ___

Re: OT: Javascript Help

2002-01-10 Thread Alex
www.irt.org On Thu, 10 Jan 2002, clint wrote: > I know this is off topic, but it kinda isn't. > > Can someone show me how to add 5 minutes to now in javascript? > > I am having a hard time finding how to do this. > > Thanks! > > _

Re: OT: Javascript Help

2002-01-10 Thread savan . thongvanh
() ; clint <[EMAIL PROTECTED]> on 01/10/2002 12:35:21 PM Please respond to [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> cc: Subject: OT: Javascript Help I know this is off topic, but it kinda isn't. Can someone show me how to add 5 minutes to now in javascript? I

OT: Javascript Help

2002-01-10 Thread clint
I know this is off topic, but it kinda isn't. Can someone show me how to add 5 minutes to now in javascript? I am having a hard time finding how to do this. Thanks! __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40

OT: JavaScript Help

2001-06-08 Thread Todd Ashworth
This is slowly driving me insane .. you would think this would be an easy thing to do (what I'm trying to accomplish, not driving me insane =-p ) I have a table with dynamicly generated rows. Each row has 2 cells. The first cell in each row has an ID. When a row is clicked it triggers a JavaSc