Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
2k views

How to resize ONLY horizontally or vertically with jquery UI Resizable?

The only solution I've found is to set the max and min heigth or width with the current value. Example: foo.resizable({ maxHeight: foo.height(), minHeight: foo.height() }); But this is ...
6
votes
3answers
269 views

jQuery-UI Resizable: scale all alsoResize elements in proportion with resizable div

I have a resizable div which is positioned over a selection of elements which have been set to alsoResize. Visually, the resizable element is a bounding box for the alsoResize elements. I want to ...
6
votes
1answer
2k views

jQuery UI Resizable alsoResize reverse

How to make the jQuery UI Resizable alsoResize reverse direction. suppose in the html there is two div tag is there, if i resize in upward means the other thing has to resize downward <script> ...
5
votes
1answer
150 views

jQuery UI Resizable - How to thicken handle

Is it possible to make the handle thicker, for easier grabbing? For example, in the link below, you will notice that I have a handle on a div at the bottom only, which is difficult to get hold of ...
3
votes
1answer
134 views

Jquery resizable shifts my DOM element

I have the following code <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style ...
3
votes
1answer
131 views

WPF library similar to jQuery UI?

Are there any WPF libraries similar to jQuery UI? I especially like the Sortable interaction: and Resizable interaction: Would be great if these 2 interactions could be combined. Thanks.
3
votes
2answers
1k views

Jquery UI in IE8: suspending sort behavior while resizing an element that is sortable and resizable

I have a list of elements which I would like to make sortable and resizable using Jquery UI. Combining them works great in Chrome and Firefox. But in IE8 (both in normal and compatibility view), ...
2
votes
2answers
39 views

JQuery resize handles not working after rotation using jQueryRotate

Hi can anyone please help me with a problem I have with the risizing handles in jquery. Basically, I have a div dragging, resizing and rotating (using jqueryRotate) as expected. However when the div ...
2
votes
1answer
61 views

Resizing one element over another element

I want to re-size an element inside and outside of its parent without interruption. Please see the example. I assume there are three <div> rows and each row has several elements with similar ...
2
votes
1answer
217 views

jQuery plugin to draw, resize and move boxes

I'm developing a page where I can draw boxes, resize them (pulling edges or corners) and move them by dragging (and I also need a zooming function, but this is another problem). I found individual ...
2
votes
3answers
388 views

jquery ui resizable left-bottom handle to resize

I am using jquery-ui-resizable plugin in my project. By default when you make a DOM Object jquery-ui-resizable the resizable handle will appear on right-bottom corner, I need the re-sizable handle on ...
2
votes
3answers
132 views

How to cancel click after resizable events?

I am utilizing the Jquery UI resizable plugin in order to resize various div's. Consider the following HTML page (with JS embedded): <html> <head></head> <body> <div ...
2
votes
1answer
385 views

jQuery Resizable() UI Problem

In general, resizable() works fine. Here is where I am getting into an issue. I have a div that contains some resizable items that work fine (resizable() applied to them at some point). user can ...
2
votes
1answer
1k views

JQuery Resize div

I want to add a div on a click and automatically start the resize mouse ui functionality with the mousedown. I can add the div easily, I have the resize functionality easy. But I can't figure out how ...
2
votes
1answer
621 views

jQuery UI resizable : auto height when using east handle alone

i have a jqueryui re-sizable div. I want only the width to be re-sizable and the height to remain auto, so that the div grows or shrinks with the content. If i set it to display only the east handle ...
2
votes
1answer
2k views

How to trigger jquery Resizable resize programmatically?

I have a div element which is made jquery Resizable. It has alsoResize option set, so other elements resize simultaneously. What I want to do, is to set size of this Resizable div element ...
2
votes
2answers
8k views

Dynamic Jquery Splitter Plugin

Hi I am trying to use Jquery Splitter http://www.methvin.com/jquery/splitter/ it works fine if the splitter panes are static but i need to add panes dynamically in it. also i need to remove those ...
1
vote
1answer
68 views

need to make img draggable and resizable

Here is my code: {//Add Image $('#add_btn').click(function() { var src$ = $('#img_loc').val(); $('<img>').attr({ src: src$, class: 'item'}) ...
1
vote
1answer
35 views

Dynamically change/assign ui resizable instance on already loaded DOM elements

I'm trying to dynamically assign a different instance of jQuery-UI's resizable after the DOM has loaded. I basically want to assign a fixed aspectRatio of true or false depending on certain factors. ...
1
vote
0answers
98 views

jquery resizable handles - are they supposed to work?

Ok, So I'm a bit lost on this. jQuery UI documentation states that on resizable i can have visible handles which as i understand are visible icons/pictures (do I understand this correctly?) If ...
1
vote
1answer
202 views

How to make JQuery resizable & draggable work with Greasemonkey?

[The following is self-answering post after resolving the problem by myself. I guess some people may find it useful.] I try to use JQuery's resizable and draggable in Greasemonkey script, and I get ...
1
vote
2answers
230 views

JQuery UI event callbacks not triggering when set in initializer

I have the following code $(document).ready(function() { $('#content_reservation-fullCalendar').fullCalendar({ header: { left: 'prev,next today', center: ...
1
vote
2answers
796 views

Adjust the width of 2 divs using jQuery-Resizable

I currently work on the following page: divResizable has been modified by jQuery using the following code in $().ready() $("#divResizanle").resizable({ handles: 'e' }); ...
1
vote
2answers
385 views

Resize Textarea based on parent Div

I have code as below div is draggable and Resizable using JQuery.I want the inner textare to be resized automatically based on resized div.With code below it works fine for width but it does not ...
1
vote
3answers
263 views

JqueryUi resizable issue, alsoResize expands beyond containment!

i have this structure of DIVs <div id="container"> <div="outer"> <div id="inner"> </div> </div> </div> and i made the 'outer' div resizable() ...
1
vote
1answer
886 views

How do I save the position of draggable & resizeable elements?

I'm building a site which allows users to create an html page which can then be saved and shared on another site. I want them to be able to resize and drag the page elements. I can do this using ...
1
vote
2answers
532 views

jQuery UI Resizable stop resizing in the resize event

Using jQuery UI Resizable I'm trying to prevent resizing based on various rules. The built-in containment feature doesn't seem to work properly with absolutely positioned elements, and I would need ...
1
vote
1answer
317 views

jQuery Resizable handle z-index

I noticed that the jQuery UI's resizable handles are on top of all other elements in the page. I checked using Chrome's developer tools and saw that they are automatically given a z-index of 1001. Is ...
1
vote
1answer
159 views

jquery resizable return false

I have an object that has a property status="lock". The div that represents this object is resizable and draggable. For the draggable, if i use the following logic then the dragging is effectively ...
1
vote
1answer
401 views

jquery layout and dynamic draggable div issue

I am using jquery layout plugin and have the following situation that I cannot find a solution. How do I make the center pane increase its size permanently by dragging the div beyond the bottom ...
1
vote
3answers
617 views

jQuery resizable plugin, to resize only height

How to make alsoResize option to only work for height but not for both width and height?
1
vote
1answer
410 views

jQuery resizable's alsoResize: How can I cut the growth ratio of the inner resize div's?

I've a resizable area the contains two areas that I also want resized side by side. The ratio of growth horizontally is 1:1 for each area, but since the two contained areas are side by side, the sum ...
1
vote
1answer
262 views

jquery ui resizable proper use

In my website i use prototype, and in prototype you can pass functions as parameters to some objects, for example, the dragable object. I have recently stated using jquery resizeable, and i can't ...
1
vote
3answers
376 views

jQuery resizable only works on first element

I have a control on my page will contain multiple multi-line text boxes that need to be resizable. I am attempting to use the jQuery resizable function to accomplish this task. I only need my text ...
1
vote
2answers
458 views

jQuery UI resizable cloned element(.clone(true)) doesn't resize

I'm having this strange problem with cloned elements(using .clone(true)) with draggable and resizable functionalities from jQuery UI. After cloning, the cloned elements don't have these ...
1
vote
3answers
276 views

My jQuery ready function is firing too early… It's not ready!

I'm adding resizable to several div tags that are part of a complex page. But the $(document).ready() if executing too early. Not everything has been parsed and the resizable fails. How do I get ...
1
vote
1answer
212 views

multiple resizables acting strange

I'm trying to place multiple resizable and draggable div's on one page that move (vertically) inside their own parent div. you can take a look at http://bit.ly/bCutBE However, these div's act really ...
1
vote
1answer
510 views

Something like jQuery's .resizable but without the div's inside

this is just a quick probe to see if this is technically possible. I'm wanting to enable the resizing of an image in the browser (also within a contentEditable area). Firefox and IE already allow ...
0
votes
0answers
14 views

Setting jQuery Resizable Handles for Multiple Elements

I am using code similar to that shown below to allow resizing of 2 elements. $( "#resizable-text1, #resizable-text2" ).resizable({ containment: "#containment-wrapper", handles: ...
0
votes
3answers
29 views

Jquery Optimisation of Draggable and Resizable

I'm after some help with jquery. Can some one tell me the best way to optimise the use of the .draggable and .sizable used on many different, but similarly named, elements for example $( ...
0
votes
0answers
12 views

JQuery Make Resizable Dynamic Elements With Delegate

I'm trying to make some html elements resizable. But my some html elements have to be created dynamically and i can't make resizable those elements.. I have to do it with Live, Bind or Delegate but ...
0
votes
2answers
40 views

Restricting Jquery Resize To Container

I have 2 divs placed inside another div. I want to resize these 2 divs within the main div. I can constraint each div separately using following code. <div id='resizable'> <div ...
0
votes
1answer
34 views

Unable to apply JqueryUI Resizable AspectRatio after initialization? [Solved]

I was trying to turn the aspect ratios on/off dynamically in JQueryUI resizable, however even after setting the option to false, it keeps maintaining the aspect ratio. Below is the code I am currently ...
0
votes
2answers
43 views

Create jQuery ui resizable instance using selector added to DOM by jQuery

I'm trying to start a jquery ui resizable instance, but using a selector added to the DOM by jquery itself. This is a basic example of my script: HTML: <div class='lyr'></div> jQuery: ...
0
votes
0answers
70 views

Jquery ui resizable() and dynamic div

$('.window').live('applysettings',function() { $(this).resizable().draggable(); }); div = $('<div class="window"></div>').load(externalcontent.php); ...
0
votes
0answers
52 views

How can I disable a click event on resize when using jQueryUI's resizable?

I am building an interface with jQuery and jQueryUI and I something that looks like this <div id="sidebar"> <div id="handle"> </div> </div> I then have this javascript ...
0
votes
0answers
74 views

Draggable and Resizable jQuery UI problem with containment

It shouldn't be possible to drag any part of the image outside #editor after I resize it. http://jsfiddle.net/Tw8EU/2/ Anyone can give me a tip on how to fix that?
0
votes
1answer
53 views

Getting ID of image being resized using Jquery UI

I am using Jquery UI to drag and drop and resize images. I am resizing the image within the div and dragging the Div to resolve the bug in Jquery UI if one drags and resizes div. How do I find the ...
0
votes
2answers
57 views

How to know which handle is getting used in jquery resizable

i am using jquery resizable to resize a div $("#mainDiv").resizable({ handles: 's, e', start: function(event, ui) { // want to perform some action here }, resize: ...
0
votes
1answer
20 views

How to know which of the resize handles is used.?

Before resizing (on the start event), need to know which of the resize handles is used. How to know it?

1 2