I have an html video and I have been manipulating the speed of playback, I understand by using a minus numeric value the video can play in reverse. On click of the video I would like to toggle the playback to play backwards or forwards respectfully.
$('video').click(function(){
$('.slow-video').toggleProp({
playbackRate: -0.6,
playbackRate: 0.6
});
});