Hello, I don't think you're ui.resizable.js is loading properly.
See this link for your fixed example: http://www.getdiverted.com/test/test3.html Also, it's probably better to download the ui.core.js and ui.resizable.js and put them into your own fodlers on your website, rather than linking to the jquery.com site... I think google host jQuery code if you don't want to. Search for the archives for more info on that one. Hope that helps... Cheers, N On Nov 10, 11:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > 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 ?