[Proto-Scripty] Re: Dragging a link

2009-04-20 Thread Mats
Thanks Marcus, Looks good Will give that a try! On Apr 20, 7:59 am, Marcus Schwarz msspamf...@gmx.de wrote: Hi Mats, my solution to this problem was the following: a id=foo href=foo onclick=checkLink(this)bar/a The draggable is extended with onStart and onEnd-Handlers: new

[Proto-Scripty] Re: Dragging a link

2009-04-19 Thread Marcus Schwarz
Hi Mats, my solution to this problem was the following: a id=foo href=foo onclick=checkLink(this)bar/a The draggable is extended with onStart and onEnd-Handlers: new Draggable('foo', {onStart:x1 onEnd:x2}); x1: onStart: function(e) {Global.DRAGGING = true;} x2: onEnd: function(e)