Drag and drop scrollable

I have a Embeded pdf file on my web page, and i have a draggable div i want the draggable div to be able to scroll down the pdf file i don’t want to use scroll bars,

here is my code first the embedded pdf file

<embed src="<?php echo $row['doc3']; ?>"id="wes"width="100%" height="100%"type='application/pdf'> 

and the draggable div

<div><a href="#"  id="draggable3"class="myButton">Drag Me to where you need signature</a></div>

and my js code

  $("#draggable3").draggable({
            containment: "#wes",
            scroll: true,
    stop: handleDragStop3
  } );

I have tried everything but nothing seems to work
thanks

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.