From javascript at theblades-family.com Tue Sep 3 07:57:09 2002 From: javascript at theblades-family.com (Cutter (javascript list)) Date: Tue, 03 Sep 2002 08:57:09 -0400 Subject: [Javascript] Re: Linked text in layers onMouseOver In-Reply-To: <004101c2510f$eda1abf0$64fea8c0@PIETRO> References: <004101c2510f$eda1abf0$64fea8c0@PIETRO> Message-ID: <20020903125709.68918.qmail@vpop.dmv.com> You may have to code this several different ways for the different browsers. IE does not support layers, and you would probably be better off placing your dynamic content in a div tag instead of an anchor tag... Cutter Pietro Carubbi writes: > Hallo, > > I have some images, that, onMouseOver, let appear texts within layers. > > I want these texts displayed in the layers contain images and links, but... > I receive an 'unknown run-time error' from IE. > > The page is built so: > > 1) In the HEAD I have: > > > > 2) In the BODY I have this kind of tables where the layers are contained: > > > > 3) There are then the images, that, onMouseOver, have to display the > descriptions (1) in the layers (2): > > src="..."> > > > How do I have to optimize this code? What is wrong in the HEAD's description > strings??? > > Thank you in advance, > > Cheers, > > Pietro > > _______________________________________________ > Javascript mailing list > Javascript at LaTech.edu > https://lists.LaTech.edu/mailman/listinfo/javascript From saleandro at yahoo.com Tue Sep 3 09:08:35 2002 From: saleandro at yahoo.com (Sabrina Leandro) Date: Tue, 3 Sep 2002 07:08:35 -0700 (PDT) Subject: [Javascript] Reloading "parent" window... Message-ID: <20020903140835.24542.qmail@web13908.mail.yahoo.com> Hello! It's my fisrt email to this list and I'm totally new to javascript, so sorry if I ask a lame question... :) I have a page that opens a new smaller window, using window.open(...). I'd like that this new window would reload (or go to) his "parent" (the window that created it) when a button is pressed. This parent-window is in fact a frameset, so what I'd like to do is reload one of its frames. Also, are there any online books or tutorials about javascript, and specially, on how to use php with javascript? Thanks in advance, Sabrina __________________________________________________ Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes http://finance.yahoo.com From peter at brunone.com Tue Sep 3 10:53:50 2002 From: peter at brunone.com (Peter Brunone) Date: Tue, 3 Sep 2002 10:53:50 -0500 Subject: [Javascript] Reloading "parent" window... References: <20020903140835.24542.qmail@web13908.mail.yahoo.com> Message-ID: <119d01c25362$20b5f010$3995210a@pbrunonePC> Sabrina, window.opener.frames.frameName.location.reload() should do the trick. Just climb the object model :) PHP is a server-side language, and as such shouldn't really matter at all to your client-side Javascript. You could use ASP, Cold Fusion, Silverstream, or CGI Perl scripts, and your Javascript for the browser wouldn't change. You simply include it in the HTML portion of your page, or if you want it to be dynamic, have the server-side code write it out... just like it would write out database fields or other dynamic content. The resources page of this listserve -- at http://mountaindragon.com/javascript/resources.htm -- has a lot of excellent material for learning to use Javascript, including some browser-specific (and cross-browser) DHTML references. Cheers, Peter ----- Original Message ----- From: "Sabrina Leandro" To: Sent: Tuesday, September 03, 2002 9:08 AM Subject: [Javascript] Reloading "parent" window... | Hello! | | It's my fisrt email to this list and I'm totally new | to javascript, so sorry if I ask a lame question... :) | | I have a page that opens a new smaller window, using | window.open(...). I'd like that this new window would | reload (or go to) his "parent" (the window that | created it) when a button is pressed. | | This parent-window is in fact a frameset, so what I'd | like to do is reload one of its frames. | | Also, are there any online books or tutorials about | javascript, and | specially, on how to use php with javascript? | | Thanks in advance, | Sabrina | | | __________________________________________________ | Do You Yahoo!? | Yahoo! Finance - Get real-time stock quotes | http://finance.yahoo.com | _______________________________________________ | Javascript mailing list | Javascript at LaTech.edu | https://lists.LaTech.edu/mailman/listinfo/javascript | From OfficeMgr at NetVA.com Wed Sep 4 07:26:19 2002 From: OfficeMgr at NetVA.com (OfficeMgr) Date: Wed, 4 Sep 2002 08:26:19 -0400 Subject: [Javascript] Logging referring URLs Message-ID: <002301c2540e$4726ddc0$98d2fea9@bigdaddy> This is my first post to this group and hope that I am doing it correctly. I have seen the following script, which writes the referring URL to the user's browser window. Is there some way of writing the document.referrer to a log file on the host webserver. The webserver in question does not have any raw logs available and I'm hoping to make up for it with a simple script? Cheers, Brent From iztokp at amis.net Wed Sep 4 08:24:18 2002 From: iztokp at amis.net (Iztok Polanic) Date: Wed, 4 Sep 2002 15:24:18 +0200 Subject: [Javascript] box? I tried this but it doesn't work: document.forms["FORMA"].elements["SELECT"].value = 'test'; Bye, Iztok From mallard at serv.net Wed Sep 4 08:27:11 2002 From: mallard at serv.net (TomMallard) Date: Wed, 4 Sep 2002 06:27:11 -0700 Subject: [Javascript] Logging referring URLs In-Reply-To: <002301c2540e$4726ddc0$98d2fea9@bigdaddy> Message-ID: To do what you want you'll need to submit a form to the server... Instead of using document.write on the client, include the referrer code on the server that's issuing the page...you can use Request.ServerVariables("HTTP_REFERER") to gain what site they came from and write that into the page to begin with. tom mallard seattle -----Original Message----- From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On Behalf Of OfficeMgr Sent: Wednesday, September 04, 2002 5:26 AM To: javascript at LaTech.edu Subject: [Javascript] Logging referring URLs This is my first post to this group and hope that I am doing it correctly. I have seen the following script, which writes the referring URL to the user's browser window. Is there some way of writing the document.referrer to a log file on the host webserver. The webserver in question does not have any raw logs available and I'm hoping to make up for it with a simple script? Cheers, Brent _______________________________________________ Javascript mailing list Javascript at LaTech.edu https://lists.LaTech.edu/mailman/listinfo/javascript From lkmckinn at ingr.com Wed Sep 4 08:36:56 2002 From: lkmckinn at ingr.com (Mckinney, Lori K) Date: Wed, 4 Sep 2002 08:36:56 -0500 Subject: [Javascript] Hi! How to fill a References: <000701c25416$60244a80$072512d4@omega> Message-ID: <3D760D44.CDBBC7FB@aflyingstart.net> document.formName.selectName.options[x].value = 'test'; formName is name of form (or use forms array) selectName is name of select (or use elements array) options is array of options in that select x is the number of the option you wish to fill (which may not yet exist) You may also have to manipulate document.formName.selectName.options.length And if you want "test" to appear in the select you would need to write document.formName.selectName.options[x].text = 'test'; hth Rodney Iztok Polanic wrote: > Hi! > > How to fill a Message-ID: >From: "Mckinney, Lori K" >Reply-To: javascript at LaTech.edu >To: javascript at LaTech.edu >Subject: RE: [Javascript] There lowest the tabindex is the first tabed item. ==================================== Trey Hunner: tutwabee at hotmail.com website: http://www.websiter.biz AIM, Yahoo, and MSN: tutwabee ICQ: 155101326 ==================================== >From: Andrew Dunn >Reply-To: javascript at LaTech.edu >To: "'javascript at LaTech.edu'" >Subject: [Javascript] Tab order on web page >Date: Mon, 9 Sep 2002 10:54:27 +1000 > >Is it possible to change the tab order on a web page? > >Thanks. >_______________________________________________ >Javascript mailing list >Javascript at LaTech.edu >https://lists.LaTech.edu/mailman/listinfo/javascript _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com From peter at brunone.com Sun Sep 8 23:06:19 2002 From: peter at brunone.com (Peter Brunone) Date: Sun, 8 Sep 2002 23:06:19 -0500 Subject: [Javascript] Tab order on web page In-Reply-To: <1D0255E75622D51185DB00D0B7E3FF44203A70@chimaera.d2k.com.au> Message-ID: Sure, but you don't need Javascript; it's just an HTML attribute called TABINDEX that you set to an integer. The order starts at the lowest and goes through the highest number, cycling back to the start. I don't know if earlier browsers support tabindex, but you can probably find out by checking around. Cheers, Peter |-----Original Message----- |From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On |Behalf Of Andrew Dunn | |Is it possible to change the tab order on a web page? | |Thanks. | From javascript at theblades-family.com Mon Sep 9 08:29:58 2002 From: javascript at theblades-family.com (Cutter (javascript list)) Date: Mon, 09 Sep 2002 09:29:58 -0400 Subject: [Javascript] Re: Tab order on web page In-Reply-To: References: Message-ID: <20020909132958.45872.qmail@vpop.dmv.com> tabindex is a nice feature, but I think it is only supported in IE (5.+?) Cutter Peter Brunone writes: > > Sure, but you don't need Javascript; it's just an HTML attribute called > TABINDEX that you set to an integer. The order starts at the lowest and > goes through the highest number, cycling back to the start. > I don't know if earlier browsers support tabindex, but you can probably > find out by checking around. > > Cheers, > > Peter > > |-----Original Message----- > |From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On > |Behalf Of Andrew Dunn > | > |Is it possible to change the tab order on a web page? > | > |Thanks. > | > > _______________________________________________ > Javascript mailing list > Javascript at LaTech.edu > https://lists.LaTech.edu/mailman/listinfo/javascript From LHJ at chello.se Mon Sep 9 12:04:31 2002 From: LHJ at chello.se (Lars J) Date: Mon, 09 Sep 2002 19:04:31 +0200 Subject: [Javascript] Replace button with image Message-ID: <5.1.1.6.0.20020909190342.009fdec0@pop.chello.se> Is there a way of replacing the "Browse" button with an image when you create an upload form? Regards, Lars Johansson From tutwabee at hotmail.com Mon Sep 9 16:50:06 2002 From: tutwabee at hotmail.com (Trey H) Date: Mon, 09 Sep 2002 21:50:06 +0000 Subject: [Javascript] Replace button with image Message-ID: No. The browse button cannot be substituted for an image and you cannot change the text on the button. ==================================== Trey Hunner: tutwabee at hotmail.com website: http://www.websiter.biz AIM, Yahoo, and MSN: tutwabee ICQ: 155101326 ==================================== >From: Lars J >Reply-To: javascript at LaTech.edu >To: javascript at latech.edu >Subject: [Javascript] Replace button with image >Date: Mon, 09 Sep 2002 19:04:31 +0200 > >Is there a way of replacing the "Browse" button with an image when you >create an upload form? > >Regards, >Lars Johansson > >_______________________________________________ >Javascript mailing list >Javascript at LaTech.edu >https://lists.LaTech.edu/mailman/listinfo/javascript _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From tsang at interlog.com Mon Sep 9 18:58:36 2002 From: tsang at interlog.com (George Tsang) Date: Mon, 9 Sep 2002 19:58:36 -0400 Subject: [Javascript] Invoke onclick event of one button from clicking a second button Message-ID: <000601c2585c$d17841b0$f3e7059a@lvaluep0inby4h> Greetings, I have set up the following:
Result: By running this on IE5.5 and by clicking the 'B' button, I can invoke the alert message belonging to the onclick event of the 'A' button. However, this does not work in Netscape 6. The Netscape Javascript Console posted the error: "stuff.click is not a function". I changed the button tag attributes of the 'B' button to: Result: IE5.5 works. Netscape 6 still does not work. The Netscape Javascript Console posted the error: "stuff[0].click is not a function". Is there anything else one can do to resolve this problem. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From hlove at u.washington.edu Mon Sep 9 19:21:18 2002 From: hlove at u.washington.edu (Harry Love) Date: Mon, 9 Sep 2002 17:21:18 -0700 Subject: [Javascript] Invoke onclick event of one button from clicking a second button In-Reply-To: <000601c2585c$d17841b0$f3e7059a@lvaluep0inby4h> Message-ID: <000801c2585f$fbc11e30$467a5f80@hsl.washington.edu> -----Original Message----- From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu] On Behalf Of George Tsang Sent: Monday, September 09, 2002 4:59 PM To: Javascript at LaTech.edu Subject: [Javascript] Invoke onclick event of one button from clicking a second button Greetings, I have set up the following:
----------------------- George, You could try this: Works in Moz1.1. Regards, Harry -------------- next part -------------- An HTML attachment was scrubbed... URL: From javascript at theblades-family.com Tue Sep 10 07:36:34 2002 From: javascript at theblades-family.com (Cutter (javascript list)) Date: Tue, 10 Sep 2002 08:36:34 -0400 Subject: [Javascript] Re: Invoke onclick event of one button from clicking a second button In-Reply-To: <000601c2585c$d17841b0$f3e7059a@lvaluep0inby4h> References: <000601c2585c$d17841b0$f3e7059a@lvaluep0inby4h> Message-ID: <20020910123634.54244.qmail@vpop.dmv.com> From Javascript: The Definitive Guide, David Flanagan The click() method of a form element simulates a mouseclick on the form element but does not invoke the onclick event handler of the element Cutter George Tsang writes: > Greetings, > > I have set up the following: > > >
> > > Result: > > By running this on IE5.5 and by clicking the 'B' button, I can invoke > the alert message belonging to the onclick event of the 'A' button. > > However, this does not work in Netscape 6. The Netscape Javascript > Console posted the error: "stuff.click is not a function". > > I changed the button tag attributes of the 'B' button to: > > > > Result: > > IE5.5 works. Netscape 6 still does not work. The Netscape Javascript > Console posted the error: "stuff[0].click is not a function". > > Is there anything else one can do to resolve this problem. > > Thanks. From George.Tsang at senecac.on.ca Tue Sep 10 21:17:22 2002 From: George.Tsang at senecac.on.ca (George Tsang) Date: Tue, 10 Sep 2002 22:17:22 -0400 Subject: [Javascript] RE: Invoke onclick event of one button from clicking a second button Message-ID: <000001c25939$5dc9cf30$b461cc8e@lvaluep0inby4h> Thanks Harry for your help. However, I had tried the same way you'd shown in the past and it did NOT work on Netscape 6. I tried again just now and it still does not work on my machine using Netscape 6. (IE 5.5 works fine.) If you know another way that works please let me know. Thanks. -----Original Message----- From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu] On Behalf Of George Tsang Sent: Monday, September 09, 2002 4:59 PM To: Javascript at LaTech.edu Subject: [Javascript] Invoke onclick event of one button from clicking a second button Greetings, I have set up the following:
----------------------- George, You could try this: Works in Moz1.1. Regards, Harry -------------- next part -------------- An HTML attachment was scrubbed... URL: From uplate at attbi.com Wed Sep 11 06:19:38 2002 From: uplate at attbi.com (uplate at attbi.com) Date: Wed, 11 Sep 2002 11:19:38 +0000 Subject: [Javascript] Can you change a style at runtime? Message-ID: <20020911111938.SWFS10266.rwcrmhc51.attbi.com@rwcrwbc58> Hi all. I'm looking for a way to dynamically change a div's class name that will work in both IE6 and NN6. Does anyone have any ideas? Thanks much. Brian M. From uplate at attbi.com Wed Sep 11 06:19:38 2002 From: uplate at attbi.com (uplate at attbi.com) Date: Wed, 11 Sep 2002 11:19:38 +0000 Subject: [Javascript] Can you change a style at runtime? Message-ID: <20020911111938.SWFS10266.rwcrmhc51.attbi.com@rwcrwbc58> Hi all. I'm looking for a way to dynamically change a div's class name that will work in both IE6 and NN6. Does anyone have any ideas? Thanks much. Brian M. From hlove at u.washington.edu Wed Sep 11 16:44:30 2002 From: hlove at u.washington.edu (Harry Love) Date: Wed, 11 Sep 2002 14:44:30 -0700 Subject: [Javascript] RE: Invoke onclick event of one button from clicking a second button In-Reply-To: <000001c25939$5dc9cf30$b461cc8e@lvaluep0inby4h> Message-ID: <000201c259dc$690ca9f0$467a5f80@hsl.washington.edu> George, Try this: This worked for me in IE6, Moz1.1, and NN6.2. Regards, Harry From alex.yap at str.com.au Wed Sep 11 19:27:04 2002 From: alex.yap at str.com.au (Alexander Yap) Date: Thu, 12 Sep 2002 10:27:04 +1000 Subject: [Javascript] Can you change a style at runtime? In-Reply-To: <20020911111938.SWFS10266.rwcrmhc51.attbi.com@rwcrwbc58> References: <20020911111938.SWFS10266.rwcrmhc51.attbi.com@rwcrwbc58> Message-ID: <20020912002555.8DBED308A1F@LaTech.edu> Hi, document.getElementById("mydiv").className="theNewClassName"; -- Alexander Yap Melbourne, Australia On Wed, 11 Sep 2002 21:19, you wrote: > Hi all. > > I'm looking for a way to dynamically change a div's class > name that will work in both IE6 and NN6. Does anyone > have any ideas? Thanks much. > > > Brian M. > _______________________________________________ > Javascript mailing list > Javascript at LaTech.edu > https://lists.LaTech.edu/mailman/listinfo/javascript From sachinz at dpsl.net Wed Sep 11 23:30:38 2002 From: sachinz at dpsl.net (Sachin Zingade) Date: Thu, 12 Sep 2002 10:00:38 +0530 Subject: [Javascript] How to disable Print Screen in Netscape In-Reply-To: <20020912002555.8DBED308A1F@LaTech.edu> Message-ID: I want Script to disable the Print Screen Key in Netscape 6 and above browser Sachin Zingade From hieuoz at yahoo.com Thu Sep 12 02:52:51 2002 From: hieuoz at yahoo.com (H Ho) Date: Thu, 12 Sep 2002 00:52:51 -0700 (PDT) Subject: [Javascript] (no subject) Message-ID: <20020912075251.25457.qmail@web40514.mail.yahoo.com> subcribe javascript --------------------------------- Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes -------------- next part -------------- An HTML attachment was scrubbed... URL: From javascript at theblades-family.com Thu Sep 12 07:45:35 2002 From: javascript at theblades-family.com (Cutter (javascript list)) Date: Thu, 12 Sep 2002 08:45:35 -0400 Subject: [Javascript] Disable View Source... Message-ID: <20020912124535.78647.qmail@vpop.dmv.com> On a few sites recently I have seen that not only is the View Source disabled in the context menu but also from the View menu. Now, this may only happen in IE, but I would still like to know how it was done. Anyone have a take on this? Cutter From merchant at LATECH.EDU Thu Sep 12 14:57:52 2002 From: merchant at LATECH.EDU (David Merchant) Date: Thu, 12 Sep 2002 14:57:52 -0500 Subject: [Javascript] JavaScript List Unsubscirbe, Subscribe & Posting Info. Message-ID: <5.1.0.14.2.20020912145734.02776f48@mail.latech.edu> There are two sets of instructions, first for those who joined the list directly and second for those who joined the list via egroups (at present I cannot manually unsubscribe anyone who joined via Yahoo Groups or eGroups). 1. If you wish to subscribe or unsubscribe, visit https://lists.LaTech.edu/mailman/listinfo/javascript or send a message with the word `help' in it to the request address, javascript-request at LaTech.edu, for further instructions. To post to the list, send your posts to javascript at latech.edu 2. For those who subscribed to the Javascript list via Yahoo Groups (formally eGroups), here is how to unsubscribe: To unsubscribe via email: From your email program, send a blank message to: javascript-unsubscribe at yahoogroups.com To unsubscribe via the Web: * Sign in to Yahoo! Groups and go to the My Groups page. * Click on the Edit Message Settings link at the top of the page. * Look for the group you wish to unsubscribe from, and select Unsubscribe from the pull-down list on the right. * Click Update to save your changes. The group will no longer be listed on the My Groups page, and you will no longer receive messages. Note: If you own a group, you must first give up your ownership in the Members section of your group before you can unsubscribe on the My Groups page. *** I CANNOT manually unsubscribe you if you subscribed to the list via eGroups or Yahoo Groups. *** I have complained _repeatedly_ about this to the folks at Yahoo Groups, but to no avail. I can only manually unsubscribe those who joined via https://lists.LaTech.edu/mailman/listinfo/javascript. TTFN, David Systems Librarian, Louisiana Tech University merchant at latech.edu JavaScript List Administrator (www.mountaindragon.com/javascript/) Webmaster, HTML Encyclopedia (www.mountaindragon.com/html/) Webmaster, Memorial Day Page (www.usmemorialday.org/) Webmaster, Midori Ito Site (www.mountaindragon.com/midori/) From walter at harder.net Thu Sep 12 15:37:17 2002 From: walter at harder.net (walterash) Date: Thu, 12 Sep 2002 20:37:17 -0000 Subject: [Javascript] JavaScript error: Class doesn't support Automation Message-ID: Each time I open a window without a URL specified and then try to do anything (like write to it), IE 6 gives me this error. I tried reverting to the IE version that came with XP and the problem did not go away. Can this really be a problem with IE6 and Javascript or is there something I can fix with my version of IE. Here's some code from another site (I'm sure webshots.com won't mind if I borrow it for demonstration purposes) that behaves the same way (just so you know it's not an error in my code): ----------- function openwin(name,w,h,scrollbars,resizable,url) { var left = (screen.width-w)/2; var top = (screen.height-h)/2; var win = window.open("",name,"width=" + w + ",height=" + h +",scrollbars=" + scrollbars +",resizable=" + resizable +",screenx="+left+",screeny="+top+",left="+left+",top="+top); if (url) win.location.href=url; win.focus(); } function onClickPoster() { document.location.href = "http://www.webshots.com/g/32/596- sh/17275.html?blockPop=1"; openwin("poster", 640, 430, "yes", "yes", "http://www.webshots.com/g/poster/75/17275_poster. html"); } ------------- When onClickPoster is called, IE6 opens "About:Blank" and give the error message. Thank you for any assistance. Walter Harder From jgordon at directfile.com Thu Sep 12 17:54:33 2002 From: jgordon at directfile.com (Josiah Gordon) Date: Thu, 12 Sep 2002 15:54:33 -0700 Subject: [Javascript] Disable View Source... In-Reply-To: <20020912124535.78647.qmail@vpop.dmv.com> Message-ID: Cutter, You cannot disable the option of a client machine reading your code. Period. HTML is rendered by a browser on a client machine. I think MS scripts their site using Visual Studio .NET which has a disable_view_source flag (see URL below). Any IE-only view source block can be defeated because the client has to render the code. To see for yourself use a telnet GET request to grab a URL. You will receive plain-text code not parsed by your web browser. If a site blocks this HTTP GET request it is no longer a web server, by definition. http://www.euromind.com/iedelphi/ie5tools.htm In particular: function DisableViewSource(Disabled: Boolean): Boolean; //Disable "view source" from View-menu Hope that clears it up a bit. My personal feeling is that if you block a user from viewing your code you are only frustrating him or her. There is nothing you can do to stop a person from getting client-side code (by design!), so why spend the resources trying? Maybe in the future, maybe in another markup language, but not in HTML. --Josiah Gordon -----Original Message----- From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On Behalf Of Cutter (javascript list) Sent: Thursday, September 12, 2002 5:46 AM To: javascript at LaTech.edu Subject: [Javascript] Disable View Source... On a few sites recently I have seen that not only is the View Source disabled in the context menu but also from the View menu. Now, this may only happen in IE, but I would still like to know how it was done. Anyone have a take on this? Cutter _______________________________________________ Javascript mailing list Javascript at LaTech.edu https://lists.LaTech.edu/mailman/listinfo/javascript From anandkan at vsnl.net Thu Sep 12 20:40:36 2002 From: anandkan at vsnl.net (anand) Date: Fri, 13 Sep 2002 07:10:36 +0530 Subject: [Javascript] Invoke onclick event of one button from clicking a second button In-Reply-To: <000601c2585c$d17841b0$f3e7059a@lvaluep0inby4h> Message-ID: hi one simple solution is the following one

HTH Mohan -------------- next part -------------- An HTML attachment was scrubbed... URL: From tsang at interlog.com Thu Sep 12 21:31:25 2002 From: tsang at interlog.com (George Tsang) Date: Thu, 12 Sep 2002 22:31:25 -0400 Subject: [Javascript] RE: RE: Invoke onclick event of one button from clicking a second button Message-ID: <000101c25acd$a90ef340$e6af1dd1@lvaluep0inby4h> Thanks Harry. It worked for me too. Can you tell me why it worked when we use the tag and not the