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

This question already has an answer here:

I can't get this extremely simple jsfiddle to work. Its just supposed to alert test when button is clicked. What am I missing here?

http://jsfiddle.net/u9nG6/2/

share|improve this question
Great explanations all, thank you. – Kory Jul 25 '11 at 23:36
Simple remark: Instead of bind click, you've better to trap submit event! – F. Hauri Nov 3 '12 at 10:10

marked as duplicate by Bergi, Mahmoud Gamal, luke, Cole Johnson, IronMan84 Apr 16 at 13:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 7 down vote accepted

You have to change the load method to no wrap (head).

It has something to do with how the JavaScript gets loaded and when the method signature is read. http://jsfiddle.net/u9nG6/11/

share|improve this answer
1  
To be specific: the onDomReady wraps the function and it only exists in that scope. The no wrap means that the function exists in the global scope. – James Khoury Jul 25 '11 at 23:30

jQuery framework is selected to load onDomReady so your function is wrapped in the jQuery anonymous function $(function(){ }); and is not visible. Either change jQuery to load as no wrap (head) or define your function at the global scope.

share|improve this answer

See here.

You needed to define your validateForm function at the global scope in order to be able to use it in the HTML like that. Otherwise you had it defined as a function within the scope of the onDomReady event, which is inaccessible outside that scope.

A more "jQuery-ish" approach would be to use jQuery to handle the click event like this:

$("#id_btnSubmit").click(validateForm);

See here for an example of that suggestion.

share|improve this answer

You're using jquery + ondomready. This means any javascript you write is placed within

$(function() {

and

});

this leads to a scope problem. You can try the following instead.

window.validateForm = function() {
}
share|improve this answer

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