jQuery UI Dialog dragStop Event Last Updated : 02 Dec, 2021 Comments Improve Suggest changes Like Article Like Report jQuery UI dragStop event is triggered when the dialog box is stopped after we drag it. Syntax: $(".selector").dialog ( dragStop: function( event, ui ) { console.log('dragged') }, Approach: First, add jQuery UI scripts needed for your project. <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> Example: HTML <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <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> <script type="text/javascript"> $(function () { $("#gfg2").dialog({ autoOpen: false, dragStop: function (event, ui) { console.log('dragged') }, }); $("#gfg").click(function () { $("#gfg2").dialog("open"); }); }); </script> </head> <body> <div id="gfg2" title="GeeksforGeeks"> <textarea> jQuery UI | dragStop(event, ui) Event </textarea> </div> <button id="gfg">Open Dialog</button> </body> </html> Output: Comment More infoAdvertise with us T taran910 Follow Improve Article Tags : JQuery jQuery-UI Explore jQuery Tutorial 8 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like