Reputation: 158
Is there a different way of JQuery draggable element moving? Think yourself as a spammer.
Upvotes: 0
Views: 323
Reputation: 12189
it should not be such a big deal, only calling the correct sequence of: .mousedown()
, .mousemove()
and .mouseup()
as the official documentation says (http://api.jquery.com/mousedown/):
Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.
the same is true for the other two jquery function descriptions
Upvotes: 1