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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
code should be like this,
and you need to add jQuery reference. |
|||||||
|
|
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/.
|
|||
|
|
e.preventDefault(). Note that opening your JavaScript console would have shown you this immediately. – Dave Newton Dec 18 '11 at 18:21