Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cannot get the following simple jQuery to work. I know I am overlooking something, so please help me out. Here is the code at http://jsfiddle.net/Z5waA/. It's a simple click the button, then alert with jQuery.

share|improve this question
1  
It won't help that you're not including the jQuery library in the JSFiddle. – Matt Dec 18 '11 at 18:20
It's e.preventDefault(). Note that opening your JavaScript console would have shown you this immediately. – Dave Newton Dec 18 '11 at 18:21

3 Answers

up vote 4 down vote accepted

preventDefault(e); should be e.preventDefault();

code should be like this,

$('#submitResetPass').bind('click', function(e) {
    e.preventDefault();
    alert("hello");
});

and you need to add jQuery reference.

share|improve this answer
OMG! Besides the e.preventDefault deal, I had MOOTOOLS selected in jSfiddle! WOW! thanks Chamika! – user482520 Dec 18 '11 at 18:23
Chamika: really, no need to beg for upvotes/accepts - the asker/community are able to decide for themselves... – Konerak Dec 18 '11 at 18:31
@Konerak: see the first comment, he accept the answer but not marked yet. that's why i ask for it – Chamika Sandamal Dec 18 '11 at 18:33

You had a couple issues. First, the jsFiddle wasn't set for jQuery. Then, your call to preventDefault wasn't correct. It works here: http://jsfiddle.net/jfriend00/v9aVb/.

$('#submitResetPass').bind('click', function(e) {
    e.preventDefault();
    alert("hello");
});
share|improve this answer

Use e.preventDefault() instead of preventDefault(e).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.