<script src="http://www.google.com/jsapi"></script>
<script>
// Load jQuery
google.load("jquery", "1.2.6");
</script>
<script src="wwv_flow_file_mgr.get_file?p_security_group_id=2223972916369820533&p_fname=ui.core.js"></script>
<script src="wwv_flow_file_mgr.get_file?p_security_group_id=2223972916369820533&p_fname=ui.draggable.js"></script>
<script src="wwv_flow_file_mgr.get_file?p_security_group_id=2223972916369820533&p_fname=ui.droppable.js"></script>
<script>
$().ready(function() {
$("#penguin").draggable(
{opacity: 0.75}
);
$("#garbage").droppable({
accept: "#penguin",
activeClass: 'droppable-active',
hoverClass: 'droppable-hover',
drop: function(e, ui) {
$(ui.draggable).remove();
}
});
});
</script> |