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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:36:37+00:00 2026-06-17T11:36:37+00:00

I try to create a simple HTML-taskboard, some columns and some tasks, with server-side-events

  • 0

I try to create a simple HTML-taskboard, some columns and some tasks, with server-side-events that will move a task from one column to another. With jQuery, removing and adding elements is easy but I want an effect (animation) to show the task is moving from column A to column B.

HTML is very simple, just a view div’s:

<div id="colA" class="column">
    <div id="task1" class="task">Task 1</div>
</div>
<div id="colB" class="column">
     <!-- move task1 here -->
</div>

And a JavaScript function called by server-side-event:

function moveTask(taskId, fromId, toId) {
    // move #task1 from #colA to #colB with a nice animation
}

Using jquery-1.8.3 and jquery-1.9.2 but I’m not limited to that, could use other libraries too.

  • 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-17T11:36:37+00:00Added an answer on June 17, 2026 at 11:36 am

    You could do something simple like this:

    http://jsfiddle.net/Nd6dc/

    var $bCol = $('#colB'),
        bLeft = $bCol.position().left;
    
    var time = 0;
    
    $('.task').each(function () {
      var _this = $(this);
    
      setTimeout(function () {
        _this.animate({ left: bLeft });
      }, (time));
    
      time = time + 200;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to create a very simple app using windows API. I've done some
I am trying to create a simple Android app that will have the possibility
I try to create a simple heroku app which clones a git repository, invokes
Alright, I'll try and make this as simple as possible. I'm trying to create
I want to try create something like Zend's Server Pagecache. What I want to
I try to create my own linux bash script that calls truecrypt for mounting.
I am trying to create a simple iPhone application using HTML/JavaScript/CSS with the help
I am trying to create a simple JSF application... <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML
Hey guys I have a simple create method with some validations and whenever the
I have a php script that will parse html page content link and view

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.