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

I have the problem, that my javascript function isn“t when I press the button:

<script type="text/javascript" language="javascript">   
(function ($) {
    $.fn.addToList = function (opts) {
        var input = $(this);
        opts.button.click(function () {
            opts.list.append("<li>" + input.val() + "</li>");
        });
    };
}(window.jQuery));

$("#zutat").addToList({
    button: $("#btn"),
    list: $("#list")
});
</script>

and

<input type="text" id="zutat" name="zutat"></input>
<input type="button" id="btn" value="Click">
<ul id="list"></ul>

How do I call this javascript function? What is my problem?

share|improve this question
Have you tried debugging? – TJHeuvel Jan 20 '12 at 8:24
Can you provide a jsfiddle jsfiddle.net/mKtn2/3 – xdazz Jan 20 '12 at 8:36

4 Answers

up vote 5 down vote accepted

If your script tag is before the #zutat" stuff, then you are trying to manipulate on #zutat when the DOM elements are not ready yet. In this case, When the jQuery selector is being executed, it will not match the elements, since they are not available yet.

To fix it, you should wrap your codes by the $(document).ready function or put it at the bottom of body tag.

<script type="text/javascript" language="javascript">   
 (function($) {

  $.fn.addToList = function(opts) {
    var input = $(this);
    opts.button.click(function() {
      opts.list.append("<li>" + input.val() + "</li>");
    });
  };



  $(document).ready(function() { // <<<<<<< execute after document ready.
    $("#zutat").addToList({
      button: $("#btn"),
      list: $("#list")
    });
  });

})(window.jQuery);

</script>
share|improve this answer

I think you should move the parenthesis this way

})(window.jQuery);

In Firefox (I am using Firebug to test this) if you do this

function(){ alert("GONG"); }();

It gives you an error but if you wrap the function with parenthesis

(function(){ alert("GONG"); })();

The anonymous function will be executed.

You should also wrap the call to the dom elements in a $(document).ready(); call as showed in qiao's answer.

share|improve this answer
+1, didn't notice this one, fixed my codes :) – qiao Jan 20 '12 at 8:49

if you want to add <li>s to a <ul> when you click a button, you are going about it in a very round about way. you don't need to extend jquery or object prototype to do that.

try the following

$("#button").click(function() {
  var val = $("zutat").val();
  $("#list").append($("<li>" + val + "</li>"));
});
share|improve this answer

Normally the click event is handled like this

$('#btn').on("click",function(){
        // code
});

I don't know what your code does exactly but not that what you want.

share|improve this answer
.click, .bind, .delegate, .live etc already use .on. There is nothing wrong about using them (except .live of course). – Esailija Jan 20 '12 at 8:28
your comment has nothing to do with my answer ? Be sure to read before you downvote – EvilP Jan 20 '12 at 11:44
Your answer implies that the OP should use .on, no? – Esailija Jan 20 '12 at 12:20
nope not really it recommends. and I don't get the your comment because I didn't imply him not to use click,bind,delegate,live... – EvilP Jan 20 '12 at 13:12

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.