bind keypress to a check for the charcode/keycode and if your condition is met, pass the js to load the next img?
$(document).keypress(function (e) { if (e.which == 32 ) { /* advance scroller! */ } }); ( lots of interesting stuff on this sort of thing at --> http://www.quirksmode.org/js/keys.html ) 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"