The problem (which we fixed) is that the event object was used outside an actual event (i.e. in an anchor with href="javascript:.." rather than an onclick event). Using window.event allows access to the event details.
On 8/23/06, Eric Roberts <[EMAIL PROTECTED]> wrote: > This is a stupid question, but do you have a script tag before it calling > the .js file with the function? > > Eric > > -----Original Message----- > From: Steve LaBadie [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 22 August 2006 08:21 > To: CF-Talk > Subject: Firefox vs. JavaScript > > I am having an issue with the use of JavaScript not working in Firefox. > When I check the JavaScript console it doesn't like <a > href="javascript:onMenuClicked(event,this,'d01')". Says the event is not > undefined. The function handles expanding and collapsing spans. > The whole code is: > > > > > > Calling page - > > <a href="javascript:onMenuClicked(event,this,'d01')"><img id="imgd01" > height="16" src="icon_parent.gif" width="32" align="absMiddle" > border="0" /> Art</a><br /> > > <span class="clsHide" id="d01"> > > <table class="degrees" cellspacing="1" cellpadding="0" border="0" > width="400"> > > <tr><td colspan="3"><p></p>Objective(s): </td></tr> > > <tr><td align="center"><a href="mailto:">Email the Department</a></td> > > <td> </td> > > <td align="center"><a href=".pdf" target="_blank">Program > Description</a></td></tr> > > </table></span> > > > > ...js document - > > function onMenuClicked( evt, eSrc, id) { > > var eSpan = document.all[id]; > > eSpan.className = (eSpan.className=='clsShow') ? 'clsHide' : > 'clsShow'; > > var eImg = document.all['img'+id]; > > if( eSpan.className=='clsHide' ) { > > eImg.src = _imageRight.src; > > } > > else { > > eImg.src = _imageDown.src; > > } > > } > > > > > > Steve LaBadie, Web Manager > East Stroudsburg University > 200 Prospect St. > East Stroudsburg, Pa 18301 > 570-422-3999 > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> http://www.esu.edu > <http://www3.esu.edu> > > > > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250692 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

