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 8263751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:12:39+00:00 2026-06-08T04:12:39+00:00

I have a method in my controller which I call with ajax. The method

  • 0

I have a method in my controller which I call with ajax.
The method can be called VERY often (depends on the speed of typing of the user).
The user types letters, words. I want the method to be called once the user stops typing.

The parameter of the method is the written text by the user.

In my way, the method gets called a lot of times in a small amount of time.

Is there a way to call the method always (after each letter) but then the method to stop executing immediately if it is called right away?

Example: a user will write slowly 10 letters – the method will be called 10 times.
Example: a user will write fast 10 letters – the method will be called the 10th time OR the method will get called 10 times but will stop executing the first 9 times and finish executing only the 10th time

  • 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-08T04:12:42+00:00Added an answer on June 8, 2026 at 4:12 am

    You can accomplish that using javascript timers. Here’s an example that triggers any logic once it has been half a second since the user’s last keypress.
    If the user keeps typing then the timers are constantly being cancelled:

    $(function() {
        var timer;
        $(".typeAhead").keypress(function() {
            if (timer != null)
                clearTimeout(timer);
            timer = setTimeout(function() {
                // do ajax call
            }, 500);
        });
    });
    

    This snippet uses jquery, but you can do it without it. Just use getElementById() instead of the selectors.

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

Sidebar

Related Questions

I have a controller method called Edit in which the user can edit data
I have a controller which has a method called history class UsersController < ApplicationController
I have a Ajax Action link, which will call a action Method, In my
I have controller action which returns JsonResult and is consumed by jquery ajax get
I am trying to achieve a JQuery AJAX call to a controller action method
So I have this basic action, which is accessed by ajax call, and fetches
I want to define a method on my application controller which I can then
I have a method in the controller which returns a string. I need to
I have a view in which I am attempting to do an ajax call
I have a form, which sends data through a Jquery Ajax Call over to

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.