Hello,

I can't get the jQuery UI resizable function, in any browsers.

Here's my code :


 <link rel="stylesheet" href="http://dev.jquery.com/view/tags/ui/
latest/themes/flora/flora.all.css" type="text/css" media="screen"
title="Flora (Default)">

<script src="http://code.jquery.com/jquery-latest.js";></script>
<script type="text/javascript" src="http://dev.jquery.com/view/tags/ui/
latest/ui/ui.core.js"></script>
<script type="text/javascript" src="scripts/jquery/ui.resizable.js"></
script>

<script>
  $(document).ready(function() {

    $("#txtArea").resizable({
      handles: "all"
    });

  });
</script>


<textarea  id="txtArea"  >test</textarea>


I can't see what I'm missing. In the debugger the ready function is
hit but the textarea is not converted to a resizable element.

Can someone help ?

Reply via email to