I have made an iframe and i want to make it draggable using jqueryui, but it is only dragging from corner of div, can anyone tell me how to make iframe draggable from center? Following is my code:
<html>
<head>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$( ".main" ).draggable({cancel:null});
});
</script>
<style type="text/css">
.main{
background-color:transparent;
height: 100px;
width: 100px;
}
.main2{
height: 100%;
width: 100%;
}
</style>
<div class="main">
<iframe src="https://www.youtube.com/v/nkS_Ar0Yad0"></iframe>
</div>
</body>
</html>