I want an image to stick to the right hand side whilst the page scroll and I have settled on bootstraps affix for this process
$(function () {
$('#image').affix({
offset: {
top: 200,
bottom: 200
}
});
});
The only problem I have is the image is jumping to centre of the screen during the scroll then popping back in place at the bottom - is there a fix for this? Included is a link to jsfiddle of demonstration.