Hi there,

I'm currently using GLOW on my website for draggable boxes.
However they do not drag in IE.

Would anyone have a fix?

        <script src="style/js/glow/1.7.0/core/core.js" type="text/javascript"></script>
        <script src="style/js/glow/1.7.0/widgets/widgets.js" type="text/javascript"></script>
        <link href="style/js/glow/1.7.0/widgets/widgets.css" type="text/css" rel="stylesheet" />
        <script type="text/javascript">
            glow.ready(function () {
                new glow.widgets.Sortable(
                    '#content .grid_5, #content .grid_6',
                    {
                        draggableOptions: {
                            handle: 'h2'
                        }
                    }
                );
            });
        </script>

Recommended Answers

All 3 Replies

Member Avatar for stbuchok

Just guessing, but try this:

glow.ready(function () {
                var sortable = new glow.widgets.Sortable(
                    '#content .grid_5, #content .grid_6',
                    {
                        draggableOptions: {
                            handle: 'h2'
                        }
                    }
                );
            });

no luck with that either :(

why are these 2 arguments: '#content .grid_5, #content .grid_6' - a (single) string: [?]
not that I think it will solve the problem but,
check if Explorer supports your blur effect first, so to make sure that the first doesn't affect the later -because drag'n'drop (along with everything dynamic), was, invented by Explorer. (and still provides the best support possible).

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.