i have started to learning Jquery and i can’t activate the resizable function.
i downloaded the core Jquery and the UI.
all working well, the animate,scroll,effects and more
BUT the resizable functions kinda stack and i have no idea why.
i have been marked the resizable pack and check if the UI have it and its have.
i try to activate it in safari , chrome ,ff on the latest versions .
<script type="text/javascript" src="../scripts/Jquery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="../scripts/Jquery/jquery-ui-1.8.18.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
/*not working , we need to check why its not readable.*/
$('p').resizable('enable');
$('textarea').resizable({
handles: "se",
grid : [20, 20],
minWidth :153,
minHeight :100,
maxHeight :200,
containment: 'parent'
});
});
</script>
if you’ve loaded all ??
try it :