Open In App
Related Articles

jQuery UI Spinner spin Event

Improve Article
Improve
Save Article
Save
Like Article
Like

jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. jQueryUI spinner widget helps us to increment and decrement values of input element using up and down arrow. In this article, we will see how to use spin event in jQuery UI slider. The spin event is triggered when triggered during increment/decrement in the jQuery UI spinner.

Syntax:

$( ".selector" ).spinner({
   spin: function( event, ui ) {}
});

CDN Link: First, add jQuery UI scripts CDN link, needed for your task.

<link href = “https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css” rel = “stylesheet”>

<script src = “https://code.jquery.com/jquery-1.10.2.js”></script>

<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>

Below example illustrate the jQuery UI Spinner spin event

Example:

HTML




<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <link href=
              rel="stylesheet" />
        <script src=
        </script>
        <script src=
        </script>
  
        <style type="text/css">
            #gfg input {
                width: 100px;
            }
        </style>
  
        <script>
            $(function () {
                $("#gfg").spinner({
                    spin: function (event, ui) {
                        console.log("spinned");
                    },
                });
            });
        </script>
    </head>
  
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>jQuery UI | spinner spin event</h2>
        <input id="gfg" />
    </body>
</html>


Output:

Reference:https://api.jqueryui.com/spinner/#event-spin


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Feb, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials