Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="/project/Robi/sl_MVywasVU6x202122289/drag_file.js"></script>
<style>
form{width: 435px;}
</style>
</head>
<body>
<form>
<fieldset>
<legend>Drag&DragOff</legend>
<button type='button' class='draq1'>Drag</button>
<button type='button' class='draq2'>Drag off</button>
<textarea rows='10' cols="50"></textarea>
</fieldset>
</form>
<script>
$(document).ready(function () {
$(".draq1").click(function () {
$("form").drags();
});
$(".draq2").click(function () {
$("form").dragsOff();
});
});
</script>
</body>
</html>
The most helpful JQUERY solutions