Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8024405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:51:50+00:00 2026-06-04T22:51:50+00:00

So I have an interval I create for each of my posts, the issue

  • 0

So I have an interval I create for each of my posts, the issue is that I load new posts and remove the old ones, so obviously I’d like to stop the interval for the previous posts. However I can’t seem to figure out how to do this. Could someone explain to me how to properly go about doing this? I’m completely lost.

$(".post").each(function(){
    myInterval = setInterval("postStats('"+$(this).attr('id')+"')", 500);
});

function postStats(pid) {
    //do some stuff
}

$(".button").click(function(){
    clearInterval(myInterval);
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T22:51:52+00:00Added an answer on June 4, 2026 at 10:51 pm

    You can store the interval ID in a data attribute:

    $(".post").each(function () {
        var that = this;
        var myInterval = setInterval(function () {
            postStats(that.id);
        }, 500);
        $(this).data("i", myInterval);
    });
    

    and clear the interval specific to each .post like so:

    $(".button").click(function () {
    
        // assuming the button is inside a post
        clearInterval($(this).closest(".post").data("i"));
    });
    

    and like SiGanteng said, you should pass a function object to setInterval rather than a string, which only gets eval‘d.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a time series(a csv file) data that looks like below. Each observation
I have a table that contains intervals: CREATE TABLE tbl ( user_id: INTEGER, start:
I have a time interval that spans years and I want all the time
I have a loop that fades between images, with an interval set by the
In one app, I have a task to create files that will be used
I have a database table that has a structure like the one shown below:
I have a project where I need to create a desktop app that acts
I have a windows Service that start some tasks based on a configuration. Each
I have a table that has this schema: create table mytable (creation_date timestamp, value
I have one table that stores values with a point in time: CREATE TABLE

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.