Jump to content

jquery containing draggable items, only dragging vertically...


RIRedinPA

Recommended Posts

what am I doing wrong here?

 



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
<!-- meta tags -->
<meta name="keywords" content="">
<meta name="description" content="">

<!-- javascript -->
<script src="js/jquery-1.4.2.min.js"></script>
<script src="js/jquery-ui-1.8.4.custom.min.js"></script>
<script language="javascript">

$(document).ready(function(){

	//declare draggable items
	$("#card").draggable({containment: '#board', scroll: false});

});

</script>

<!-- stylesheets -->

<style>

* { 
	border: 0;
	margin: 0;
	padding:0; 
}


#board { 
	border: 1px solid black;
	margin: 20px 0 0 80px;
	width: 800px;
	height: 600px;
}

</style>

<!--conditional comments -->

</head>

<body>




<div id="board">
	<p id="card" class="draggable ui-widget-content"><img src="images/cards/card01.png" width="100"></p>
</div>

</body>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.