je n'ai rien a montrer de spécial ^^
ma page contient un element div:
<div id="uploadlist" style="display:none">
<div>Upload list</div>
<div id="uploadlist_content"></div>
</div>
dont le css est la suivant:
- uploadlist{
position: fixed;
background-color:#f2f4f8;
height:350px;
right:20px;
width:200px;
bottom:32px;
padding:10px;
}
et le js
$(document).ready(function() {
$('#uploadlist').resizable({
handles : "n",
alsoResize: "#uploadlist_content"
})
});