I want a counter that increases on button click. I tried the following code, but the value printed stays the same:

$(document).ready(function () {
    $("#gonder").click(function() {
        var baslik = document.title;
        var sayi = 1;
        var sayi1 = sayi++;

        document.title = '(' +sayi+ ')' + baslik;
    });
});

What how can I do my want?

link|improve this question

50% accept rate
3  
I've cleaned up your question, but I couldn't bring myself to edit the last line. I thought it sounded too good the way it is now. – Andy E Feb 22 at 16:58
2  
thank u , i have been learned English for 4 months and sometimes i write wrong :) – CWOmer Feb 22 at 17:02
1  
your question was very understandable. For only 4 months of learning, you're doing very well. Keep up the good work :-) – Andy E Feb 22 at 18:02
feedback

6 Answers

up vote 1 down vote accepted

You need to initialize your counter outside of the function. You were clearing it on every click.

var sayi = 1;

$(document).ready(function () {
    $("#gonder").click(function() {
    var baslik = document.title;
    sayi++;
     document.title = '(' +sayi+ ')' + baslik;
    });
});
link|improve this answer
feedback

The simplest i can think of

<button>clicked 0 times</button> 
var count = 0;
$('button').click(function(){
     count++;
    $(this).text("clicked "+count+" times");
});

fiddle here http://jsfiddle.net/PKcrd/

link|improve this answer
thank u i understood. – CWOmer Feb 22 at 17:00
feedback

Here is a fairly detailed writup I did on closures using your exact goal as the straw man (er... problem)

http://jondavidjohn.com/blog/2011/09/javascript-event-handler-persistance-with-closures

Basically you can do it one of 2 ways.

  • create a counter variable outside the scope of the event handler.

    var count = 0;
    element.onclick = function() {
        count++;
    };
    
  • use a closure to provide each element its own unique counter contained within the event handler itself. Which I detail in my blog post.

link|improve this answer
feedback
var clickCounter = 0;

$(document).ready(function () {
    $("#gonder").click(function() {
    var baslik = document.title;
    var sayi = 1;
    clickCounter++;

    document.title = '(' +sayi+ ')' + baslik;
});
});
link|improve this answer
thank u so much this is correct answer .. – CWOmer Feb 22 at 16:58
feedback

I think this is what you want:

var sayi = 1;
var baslik = document.title;
$("#gonder").click(function() {
    document.title = '(' + (++sayi) + ')' + baslik;
});​
link|improve this answer
this is good idea , the easiest way :) thank u. – CWOmer Feb 22 at 17:03
feedback

You might try:

<button class="counter">I have been clicked 0 times</button> 
<script type="text/javascript">
    var count = 0;
    $('button.counter').click(function(){
        count++;
        $(this).text("clicked "+count+" times");
    });
</script>

That is the simplest I can think of.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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