in order to simulate a play effect with a jquery panorama,
I'd like to simulate that the mouse is down on it and that is being moved to a left/right side
is that posible?
same way we can
$('#item').click();
can we do something similar to achieve it?
in order to simulate a play effect with a jquery panorama,
I'd like to simulate that the mouse is down on it and that is being moved to a left/right side
is that posible?
same way we can
$('#item').click();
can we do something similar to achieve it?
Check out:
Are you looking for .mousedown() and .mouseup methods. They should behave the same way as .click()
Check this link http://api.jquery./mousedown/
Its something like
$('selector').mousedown(function{
$("selector").mousemove(function(event) {
var msg = "Handler for .mousemove() called at ";
msg += event.pageX + ", " + event.pageY;
$("#log").append("<div>" + msg + "</div>");
});
});