I'm working on a front end JS application that includes visual sliders. I need to send the updated slider information to the C# backend (ASP.NET) whenever a user makes changes. After some research, it seems like AJAX is the most efficient way to achieve this. However, I don't want the backend to be bombarded with constant AJAX requests; I only want the request to be sent when there's a change in the user input. Is there a method or approach I can use to accomplish this?