Questions tagged [jquery-resizable]
45 questions
1
vote
1 answer
Change minWidth and minHeight on the fly
I am using jquery-resizable i am stuck with an issue that i dont know min width and height at the time of binding an element for resizing but i know its boundaries when i start resizing
so i want to do something and edit the minWidth and minHeight…

Varun
- 5,001
- 12
- 54
- 85
1
vote
2 answers
jQuery Resizable: doubling the resize width
Synopsis:
If you center a resizable element and expand it left/right, it has the illusion that it is only expanding half of the mouse movement.
Reason:
This happens because the object is centered.
Question:
How would you increase the rate that the…

vol7ron
- 40,809
- 21
- 119
- 172
1
vote
1 answer
JQuery resizable changes column width in IE11
I got a table that is placed in a div. Table consists of the header with 2 columns and 1 row with a colspan of 2. Elements inside td's and th's are div's and input fields. The row takes up 100% of table width,
first header column uses 90% of the…

DannyPhantom
- 1,042
- 10
- 21
1
vote
2 answers
Make elements inside an iframe draggable and resizable
I'm trying to make elements within an iframe draggable and resizable.
First the user can add elements such as images and divs which appends into an iframe (same domain). Therefore I have tried searching within iframe using…
user2970179
1
vote
1 answer
Cancel jQueryUI mouse behavior (resize, drag) with escape key
Is it possible to cancel current jQueryUI resizable and draggable interaction with a key press?

Marcin Wisnicki
- 4,511
- 4
- 35
- 57
1
vote
2 answers
How can I make a div resizable
I have a div that I would like to be able to resize from the top of it and increase/decrease its height. I have found a ton of ways on the internet that people are using to do this, but for some reason, nothing works for mine. I can get the double…

user2847749
- 339
- 2
- 9
- 27
1
vote
1 answer
Jquery Append div and then make it resizable and draggable?
I'm confused why the script below doesn't work... It appends the div (import_box) and makes it draggable, but not resizable? Am I missing something, I've tried a few different things but they all either disable the dragging or do nothing to improve…

Lennart
- 1,560
- 5
- 20
- 38
1
vote
3 answers
Jquery UI - dynamically bind the keypress event on the clicked div
jsFiddle demo link
Hi Guys,
I want to bind the keypress event handler when i click the div layer as given in the above demo. The feature is to use the delete key to remove the selected layer.
But when i hit the delete key, the keypress handler…

Karan
- 3,265
- 9
- 54
- 82
1
vote
1 answer
Jquery-ui resizable plugin doesn't work
what on earth am i doing wrong?

Ilya Karnaukhov
- 3,838
- 7
- 31
- 53
0
votes
2 answers
How to resize any element along with siblings
Please take a look of this example
There is a div (dashed) which has three div (red, black & blue) inside of it. If i re-size dashed div, all three div re-size automatically but when i re size the red color div it only re-sizes but i want to fit…

Bibhaw
- 487
- 3
- 13
- 26
0
votes
1 answer
How to call function with correct argument in jQuery-resizable object which is creating in a loop?
I've couple of resizable objects and I'd like to trigger function 'changeS()' when I stop resizing the object.
Function changeS() should takes as first argument the name of the object for which it's called.
I mean:
when I stop resizing object…

popKonr
- 3
- 1
0
votes
1 answer
Resize Textarea resize from edge
I have following using Jquery and somehow I can resize it the right bottom corner where i see a resize icon . On side edges it shows <--> for resize but I cant stretch it from edge to resize ?What can be wrong ?
…

Pit Digger
- 9,618
- 23
- 78
- 122
0
votes
2 answers
Not able to resize Vertical Ruler again once resize stops
I am using JQuery Resizable widget on the vertical Ruler as shown in the link below. Once, I start resize using the east handle and stop it. Now, I try to resize the ruler again and I find the resize handle not showing up. I checked the html div but…

TheGaME
- 443
- 2
- 8
- 21
0
votes
1 answer
Re-sizing a div should re-size other div's proportionately
I have pasted my JS code, CSS and HTML respectively below.
var hgt=0,newhgt=0,bsh=0,diff=0;
$('#footS').resizable({
alsoResize:"#footC",
handles:"n",
start: function(event,ui){
oldhgt = ui.size.height;
bsh =…

TheGaME
- 443
- 2
- 8
- 21
0
votes
1 answer
Using jquery 'resize' with function
I am having some trouble using jquery 'resize' to make sure my function works on both loading a mobile or manual resize of window. Here's my jQuery
if ( $('.generic').is('*') ) {
function contactDropDown() {
if (…

JordanBarber
- 2,041
- 5
- 34
- 62