/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] Firefox event is undefined.

Hello,

I have come across a problem that seems common with firefox and the use of event. I have a simple javascript function which trys to determine the element that an event was acted upon:

[code]
function grabId(e)
{
var targ;
if (!e) var e = window.event;

if (e.target) targ = e.target;
else if (e.srcElement) targ = e.srcElement;

alert(theId);
}
[/code]

This is called on click of a input:

[code]
<input class=”registerInput” type=”text” name=”username” id=”username” onclick=”getId(event)” />
[/code]

This seems to work correctly for every browser except firefox. A quick search online and all the fixes seem to include:

[code]
if (!e) var e = window.event;
[/code]

But when I debug this function, neither e or event are defined, am i overlooking something really obvious?

Cheers

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@FangMar 19.2010 — function grabId(e)
{
var e = window.event || e;
var targ = e.target || e.srcElement;

<i> </i>alert(targ.id);
}

&lt;input class="registerInput" type="text" name="username" id="username" onclick="grabId(event)" /&gt;
Copy linkTweet thisAlerts:
@gscauthorMar 19.2010 — That did the trick, cheers!
×

Success!

Help @gsc spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.24,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...