Linie an Div

bRainLaG

Mitglied
Ich habe folgenden Code:
HTML:
<html>
<head>
	<style type="text/css">
		#milestone img { 
			position: absolute; 
			width: 11px; 
			height: 17px; 
		} 
	</style>
	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
	<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
	<script type="text/javascript">
	$(document).ready(function(){ 
		$("#milestone").draggable({ axis: "x" });
	});
	</script>
</head>
	<body>
	Milestone Design 2.0:
		<div id="milestone"> 
   		<img src="http://www.abload.de/img/karo58lg.gif" alt="Milestone" title="" /> 
		</div> 
	</body>
</html>

an dieses Div würde ich nun gerne noch mittig darunter eine Linie anfügen, die beim draggen daran gebunden ist. Wie kann ich das anstellen?
 
Zurück