The code is pasted below.  Thank you!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
        <!--<script type="text/javascript" src="/js/prototype.js"></script>--
>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/prototype/1.6.0.3/prototype.js"></script>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/scriptaculous/1.8.2/scriptaculous.js?
load=effects,dragdrop,controls"></script>
        <!--<script type="text/javascript" src="/js/scriptaculous.js?
load=effects,dragdrop,controls"></script>-->
</head>

<body>
        <div id="test" style="background-color: #aaaaaa; width: 200px;
height: 50px;">
                <a href="blah" onclick="blah(); return false;">blah</a>
        </div>
        <iframe>
        </iframe>
</body>

<script>
function blah(){
        blackbird.debug("blah");
}

        var dummy = new Draggable("test", {scroll:window,scrollSensitivity:
20,scrollSpeed: 25, revert: true, onStart: onDragStart, onEnd:
onDragEnd });
        var temp;
        function onDragStart(drgObj,mouseEvent){
                        temp = mouseEvent.target.onclick;
                        mouseEvent.target.onclick = function(e){
                                mouseEvent.target.onclick = temp;
                                return false;
                        }
        }

        function onDragEnd(drgObj,mouseEvent){
        }
</script>
</html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to