this is my code :
<div id="test" style="width:200px;height:100px;background:red" class="tabs change_font_size">
<div>
<a class="delete" style="float:right;font-size:20px;text-decoration:underline;cursor:pointer;">delete</a>
<form action="/" style="background:blue">
<input type="text" name="text"/>
<input type="submit" value="submit"/>
</form>
</div>
</div>
$('#test').draggable()
you can run this code in this http://jsfiddle.net/8vntr/1/
i can drag the red div, but i can't drag the blue form ,
what can i do ?
thanks