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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:42:03+00:00 2026-05-16T14:42:03+00:00

I’m trying to develop a simple shopping cart and using http://jqueryui.com/demos/droppable/#photo-manager as the base.

  • 0

I’m trying to develop a simple shopping cart and using http://jqueryui.com/demos/droppable/#photo-manager as the base.
However when I drop the Image I don’t want it to disappear from the normal list. I’ve been messing around for the last day try to sort it and just can’t figure it.

it’s got something to do with the deleteImage function, I’ve removed bit and tried adding certain sections, could someone please point me in the right direction. Here is my source it’s the same as on the site though:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>

            <script src="Javascript/jquery-1.4.2.min.js" type="text/javascript"></script>
            <script src="Javascript/jquery-ui-1.8.4.custom.min.js" type="text/javascript"></script>

    <style type="text/css">
        #gallery { float: left; width: 65%; min-height: 12em; } * html #gallery { height: 12em; } /* IE6 */
        .gallery.custom-state-active { background: #eee; }
        .gallery li { float: left; width: 96px; padding: 0.4em; margin: 0 0.4em 0.4em 0; text-align: center; }
        .gallery li h5 { margin: 0 0 0.4em; cursor: move; }
        .gallery li a { float: right; }
        .gallery li a.ui-icon-zoomin { float: left; }
        .gallery li img { width: 100%; cursor: move; }

        #trash { float: right; width: 32%; min-height: 18em; padding: 1%;} * html #trash { height: 18em; } /* IE6 */
        #trash h4 { line-height: 16px; margin: 0 0 0.4em; }
        #trash h4 .ui-icon { float: left; }
        #trash .gallery h5 { display: none; }
    </style>

<script type="text/javascript">
    $(function () {
        // there's the gallery and the trash
        var $gallery = $('#gallery'), $trash = $('#trash');

        // let the gallery items be draggable
        $('li', $gallery).draggable({
            cancel: 'a.ui-icon', // clicking an icon won't initiate dragging
            revert: 'invalid', // when not dropped, the item will revert back to its initial position
            containment: $('#demo-frame').length ? '#demo-frame' : 'document', // stick to demo-frame if present
            helper: 'clone',
            cursor: 'move'
        });

        // let the trash be droppable, accepting the gallery items
        $trash.droppable({
            accept: '#gallery > li',
            activeClass: 'ui-state-highlight',
            drop: function (ev, ui) {
                deleteImage(ui.draggable);
            }
        });

        // let the gallery be droppable as well, accepting items from the trash
        $gallery.droppable({
            accept: '#trash li',
            activeClass: 'custom-state-active',
            drop: function (ev, ui) {
                recycleImage(ui.draggable);
            }
        });

        // image deletion function
        var recycle_icon = '<a href="link/to/recycle/script/when/we/have/js/off" title="Recycle this image" class="ui-icon ui-icon-refresh">Recycle image</a>';
        function deleteImage($item) {
            $item.fadeOut(function () {
                var $list = $('ul', $trash).length ? $('ul', $trash) : $('<ul class="gallery ui-helper-reset"/>').appendTo($trash);

                $item.find('a.ui-icon-trash').remove();
                $item.append(recycle_icon).appendTo($list).fadeIn(function () {
                    $item.animate({ width: '48px' }).find('img').animate({ height: '36px' });
                });
            });
        }

        // image recycle function
        var trash_icon = '<a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>';
        function recycleImage($item) {
            $item.fadeOut(function () {

                $item.find('a.ui-icon-refresh').remove();
                $item.css('width', '96px').append(trash_icon).find('img').css('height', '72px').end().appendTo($gallery).fadeIn();
            });
        }

        // image preview function, demonstrating the ui.dialog used as a modal window
        function viewLargerImage($link) {
            var src = $link.attr('href');
            var title = $link.siblings('img').attr('alt');
            var $modal = $('img[src$="' + src + '"]');

            if ($modal.length) {
                $modal.dialog('open')
            } else {
                var img = $('<img alt="' + title + '" width="384" height="288" style="display:none;padding: 8px;" />')
                        .attr('src', src).appendTo('body');
                setTimeout(function () {
                    img.dialog({
                        title: title,
                        width: 400,
                        modal: true
                    });
                }, 1);
            }
        }

        // resolve the icons behavior with event delegation
        $('ul.gallery > li').click(function (ev) {
            var $item = $(this);
            var $target = $(ev.target);

            if ($target.is('a.ui-icon-trash')) {
                deleteImage($item);
            } else if ($target.is('a.ui-icon-zoomin')) {
                viewLargerImage($target);
            } else if ($target.is('a.ui-icon-refresh')) {
                recycleImage($item);
            }

            return false;
        });
    });
    </script>





</head>
<body>
    <form id="form1" runat="server">


    <div class="demo ui-widget ui-helper-clearfix">

        <ul id="gallery" class="gallery ui-helper-reset ui-helper-clearfix">
            <li class="ui-widget-content ui-corner-tr">
                <h5 class="ui-widget-header">High Tatras</h5>
                <img src="Images/Teas/one.jpg"  alt="The peaks of High Tatras" width="96" height="72" //>
            <%--    <a href="Images/Teas/one_high.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
                <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>--%>
            </li>
            <li class="ui-widget-content ui-corner-tr">
                <h5 class="ui-widget-header">High Tatras 2</h5>
                <img src="Images/Teas/two.jpg"  alt="The chalet at the Green mountain lake" width="96" height="72" //>
<%--                <a href="Images/Teas/two_high.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
                <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>--%>
            </li>
            <li class="ui-widget-content ui-corner-tr">
                <h5 class="ui-widget-header">High Tatras 3</h5>
                <img src="Images/Teas/three.jpg"  alt="Planning the ascent" width="96" height="72" //>
                <%--<a href="Images/Teas/three_high.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
                <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>--%>
            </li>
            <li class="ui-widget-content ui-corner-tr">
                <h5 class="ui-widget-header">High Tatras 4</h5>
                <img src="Images/Teas/four.jpg"  alt="On top of Kozi kopka" width="96" height="72" //>
<%--                <a href="Images/Teas/four_high.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
                <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>--%>
            </li>
        </ul>

        <div id="trash" class="ui-widget-content ui-state-default" style="background-color:Gray;">
            <h4 class="ui-widget-header"><span class="ui-icon ui-icon-trash">Trash</span> Trash</h4>
        </div>

    </div><!-- End demo -->




    </form>
</body>
</html>
  • 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-16T14:42:04+00:00Added an answer on May 16, 2026 at 2:42 pm

    Instead of this:

    deleteImage(ui.draggable);
    

    Delete the ui.helper, which is the clone, like this:

    deleteImage(ui.helper);
    

    ui.draggable is the original, so deleting the whole thing isn’t what you want…the cloned image that you’re actually dragging though, seems to be what yo’re after.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Seemingly simple, but I cannot find anything relevant on the web. What is the
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,

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.