$(window).keypress(function (e) {
  if (e.which == 39 ) {
    /* keypress right */
  } elseif (e.which == 37 ) {
    /* keypress left */
  } else {
    return false;
  }
});

if you can't figure out how to advance the cycle on your own, maybe
try to simulate $('#scrollLeft').click()

On May 21, 2:48 am, runrunforest <craigco...@gmail.com> wrote:
> In cycle plugin, ss there way to switch images by keyboard arrows
> instead of clicking "next, prev"

Reply via email to