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

  • Home
  • SEARCH
  • 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 231011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:53:51+00:00 2026-05-11T19:53:51+00:00

I always see this in the documentation. $(‘.selector’).draggable({ start: function(event, ui) { … }

  • 0

I always see this in the documentation.

$('.selector').draggable({
   start: function(event, ui) { ... }
});

In the jQuery documentation, what does “event” and “ui” represent and how can I use them?

Is there any way to pass the specific .selector object itself into the function?

I guess I don’t quite understand how this whole thing works without any examples.

I appreciate any help!

  • 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-05-11T19:53:51+00:00Added an answer on May 11, 2026 at 7:53 pm

    When it comes to jQuery, you need to embrace looking things up in the documentation, as for the most part it is pretty complete and will give you anything you need.

    With that in mind, this is the documentation: on Draggables:

    All callbacks (start,stop,resize) receive two arguments: The original browser event and a prepared ui object. The ui object has the following fields:

    • ui.helper – the jQuery object representing the helper that’s being dragged
    • ui.position – current position of the helper as { top, left } object, relative to the offset element
    • ui.offset – current absolute position of the helper as { top, left } object, relative to page

    As far as the event object, here’s the documentation for that.

    The most common usage of the event object is to prevent the default action. So if you have a link:

    <a href="more.html" id="show_more">Show me more!</a>
    

    And you want something to happen when the user clicks on it and has Javascript enabled, you might do:

    $('#show_more').click(function(e) {
        alert('heya!');
    });
    

    The problem here is that after the alert shows up and you close it, the default action of the link (“go to another page”) is going to happen and the user will be sent to more.html. A lot of the time this isn’t what you want, so you then prevent the default action:

    $('#show_more').click(function(e) {
        alert('heya!');
        e.preventDefault(); // cancel link event, could also return false;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 175k
  • Answers 175k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Get yourself a copy of Cygwin and train yourself up… May 12, 2026 at 3:01 pm
  • Editorial Team
    Editorial Team added an answer Because here: MyGenome genome = (MyGenome) data[0]; You are not… May 12, 2026 at 3:01 pm
  • Editorial Team
    Editorial Team added an answer Well, you haven't set up any authentication as far as… May 12, 2026 at 3:01 pm

Related Questions

I always see this in the documentation. $('.selector').draggable({ start: function(event, ui) { ... }
In a .NET project I need to verify if a string is a valid
I am building a PHP application in CodeIgniter. CodeIgniter sends all requests to the
I've been struggling with event handling in backgroundworker threads. All the documentation I've come
I always wondered how to document a method that overrides a message from a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.