i have no of elements if clicking div count will increase. at the same time click other div, first div count...
You can store [data][1] with each element counting the number of times each was clicked.
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
javascript jquery frontend web-frontend
add a comment |
You can store [data][1] with each element counting the number of times each was clicked.
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
javascript jquery frontend web-frontend
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06
add a comment |
You can store [data][1] with each element counting the number of times each was clicked.
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
javascript jquery frontend web-frontend
You can store [data][1] with each element counting the number of times each was clicked.
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$(this).data('count', 1); // initialize the count
}
$(this).html($(this).data('count')); // show it
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
javascript jquery frontend web-frontend
javascript jquery frontend web-frontend
edited Nov 13 '18 at 4:55
guradio
13.7k31836
13.7k31836
asked Nov 13 '18 at 4:52
SUGANYA V
23
23
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06
add a comment |
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06
add a comment |
1 Answer
1
active
oldest
votes
- Just set other data to 0 on second click
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274027%2fi-have-no-of-elements-if-clicking-div-count-will-increase-at-the-same-time-clic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
- Just set other data to 0 on second click
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
add a comment |
- Just set other data to 0 on second click
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
add a comment |
- Just set other data to 0 on second click
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
- Just set other data to 0 on second click
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
$('.container').click(function() {
if ($(this).data('count')) { // already been clicked
$(this).data('count', $(this).data('count') + 1); // add one
} else { // first click
$('.container').not(this).data('count', 0);
$(this).data('count', 1); // initialize the count
}
$('.container').each(function(i, v) {
$(v).html($(v).data('count')); // show it
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
<div class="container">container</div>
edited Nov 13 '18 at 5:12
answered Nov 13 '18 at 5:05
guradio
13.7k31836
13.7k31836
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
add a comment |
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
first click value 1 that time it will not change?
– SUGANYA V
Nov 13 '18 at 5:10
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
check again @SUGANYAV
– guradio
Nov 13 '18 at 5:12
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
its working thank you
– SUGANYA V
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
@SUGANYAV glad to help mate happy coding :)
– guradio
Nov 13 '18 at 5:13
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274027%2fi-have-no-of-elements-if-clicking-div-count-will-increase-at-the-same-time-clic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
looks like the demo works. Is this a demo or question?
– guradio
Nov 13 '18 at 4:56
here first container click function count increase like 1,2,3,4 and next second container click that time first container count i want 0?
– SUGANYA V
Nov 13 '18 at 4:58
see my answer it that is the desired
– guradio
Nov 13 '18 at 5:06