jQuery Objects Are No Longer Draggable Suddenly
I've installed a circular object carousel as a part of a website I've been developing lately. Here is a link to the certain carousel i'm using :
Using jQuery I've made the text in every element in the carousel draggable,
- $(".textPara").draggable({
- helper:'clone',
- appendTo: 'body'
- });
- $(".textPara").draggable("option","revert",true);
- $(".textPara").draggable({opacity:0.5});
The problem comes up when I scroll up , then scroll down and the object that disappered and then appeared again is no longer draggable.
Do you have any idea what might be the reason for that ?
Any suggestion will be helpful, thanks in advance