Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the method:

$(document).ready(function () {
    $('btnDelete1').click(function () {
        alert("something");
    })
});

And this is the code for the button:

<input type="submit" value="Delete Role" disabled="disabled" id="btnDelete1"/>

But whenever I click the button, the alert isn't happening. Why is this?

share|improve this question

3 Answers

The problem isn't connected with MVC anyway, you missed # in Jquery selector only.

$(document).ready(function () {
    $('#btnDelete1').click(function () {
        alert("something");
    });
});

EDIT:

And as mentioned Jeffrey, you forget ; too

share|improve this answer
I believe semicolons are optional in every major Javascript interpreter. The only time I've run into problems with omitting them is when I want to compress my JS, as some poorly written compressors require them. – Cerin Oct 31 '12 at 19:09
Optional semicolons are the main reason website crashing in old browsers(IE 6,7 ...) – Chuck Norris Nov 2 '12 at 6:23
Nope, they're optional in even IE6/7. Now trailing commas on the other hand completely destroy IE... – Cerin Nov 2 '12 at 13:36
Oh, maybe... I will check it :) – Chuck Norris Nov 2 '12 at 13:42

Your selector is wrong

It should be

$(document).ready(function () {
    $('#btnDelete1').click(function () {
        alert("something");
    });
});
share|improve this answer

Did you forget a ;?

$(document).ready(function () {
    $('#btnDelete1').click(function () {
        alert("something");
    });
});
share|improve this answer
Where did I forget a ; ? – dfgj fghjk Jan 16 '12 at 13:05
1  
After closing click(), behind the }). – Jeffrey Jan 16 '12 at 13:06

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.