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>