Tagged Questions
0
votes
0answers
20 views
jQuery change in width() between 1.7.2 and 1.8.0 where it now returns 0 in this situation?
I have a test website where calls to width() return a non-zero value as expected in jQuery 1.7.2 and earlier, but in newer versions (1.8.0 and later), the function is returning zero.
The problem lies ...
0
votes
3answers
27 views
Determine Pragmatically the width of a div inside an iFrame via jQuery (or voodoo)
I have a div. That div lives inside an iframe. That div has a width. I would like to get this width via jQuery. Attached are some of my adventures in doing so. Please enjoy!
...
0
votes
1answer
22 views
jQuery .width() issues in IE 8
I'm having major issues getting the size of a container in jQuery using width(), outerWidth(), innerWidth()
If you load up this URL in IE8 it gives me a width figure of over 30,000 whereas every ...
0
votes
1answer
46 views
Javascript/jQuery get true width and position of float affected element?
Is it possible to get the width (using javascript or jQuery) of a float-affected element? When text is being pushed over due to a floating image is it possible to get its position and true width? I ...
0
votes
1answer
26 views
jQuery - .width() returning 0 on imgs with max-height
So I have a horizontally scrolling div and I need to find out how wide that div needs to be based on the dynamically generated list of images inside of it.
I want to use jQuery to find the width of ...
0
votes
1answer
42 views
Struts2 Jquey plygin Select box width issues
I am trying to place 4 jquery Select boxes in a straight line. So I am placing them inside a table like this:
<table>
<tr><td> <sj:select> ...
1
vote
1answer
28 views
Getting the real width after using min-width
The goal is to get the width of an object after it has conformed to min-width and min-height standards:
.myclass{
min-width:100px;
min-height:100px;
}
The original image was 100 x 50 and ...
0
votes
6answers
62 views
Get the height of a hidden image
I've read multiple posts on this, and even found a plugin (http://dreamerslab.com/blog/en/get-hidden-elements-width-and-height-with-jquery/), but still didn't fix my problem.
I need to get the actual ...
-1
votes
2answers
50 views
Jquery, animate current div width with + 10px
I am trying to make a div get 10 px bigger than the current width of the div.
So if I have multiple divs with different widths they dont all become 200 px,
but the 140px div becomes 150px and the ...
1
vote
2answers
67 views
Set width with jQuery for Flot Chart
I want to set a certain width in my jQuery for a Chart i've used on my page. I've set the width in my stylesheet using the class .sparkline-width. How can i call this class in my jQuery?
HTML
...
0
votes
0answers
10 views
Live Width Detection
I have a progress bar with a certain width. I would like to add a class (addClass) to a specific div (.practice-questions) if the progress bar width is less than a certain percentage. However, it ...
0
votes
2answers
49 views
jquery height and width returning incorrect values in internet explorer 8 (ie8)
The following code is working fine in IE9+, Chrome, Firefox, Safari, but not on IE8. It's always returning the column height as 0 and the width incorrectly. Ideas?
jQuery version: 1.9.1
$(function ...
0
votes
0answers
85 views
Selectbox's width shrinks on tag deletion in Select2
I use Select2 to make a tagging box. I added the following html code:
<select id="tags" multiple="">
<option value="tag_1">Tag1</option>
<option ...
1
vote
1answer
32 views
Jquery calcutate width issue while first time load
Images is appearing cumulatively added when page first time load.Jquery not calculate width dynamically but normal appearing second load or after page refresh.What could be the reason?
Javascript:
...
4
votes
2answers
83 views
Use jquery to increase width of container by 10 rem
How can I increase the width of an element by 10rem using jquery. Issue is Jquery always return width/height in pixels and we want to update the height/width in some other units.
Example on: JS Bin
...
0
votes
1answer
31 views
if element width is greater than, then execute jQuery code
I have the following javascript right below the relevant html area and it is not seem to be working. I'm pretty sure I have the correct method of getting the width of the relevant div tag but not sure ...
0
votes
3answers
54 views
How to count all previous 'li' element width on hover?
I have list and I'm trying to write jQuery code to count previous li width than I hover on some element. For example if I hover third element I need to get first + second elements width.
<ul>
...
1
vote
0answers
103 views
Jquery .width() results are different in Firefox and Chrome
I am trying to measure the width of a string. To do this I create a div width the string as value, add it do the DOM and measure the width using Jquery's .width().
The problem is that I get different ...
0
votes
3answers
82 views
Fluid Width Slider
I am making a website here: argit.bounde.co.uk
I have followed a tutorial on making a slider and it works on the principle of having a ul of a big width and then the li's floated. This is then all ...
1
vote
1answer
36 views
jQuery set value according to window width
For starters; Im a big jQuery/Javascript newbie.
Im making a responsive website which is including the SlidesJS slider.
My fundamental problem is that I wonna change the height of the slider according ...
0
votes
1answer
143 views
How to set 100% div width in jquery cycle plugin
i have problem..
I must set width of slide div to 100%, max width of the "sklo" div..
See my codes below:
$(function () {
$('#sklo').cycle({
fx: 'scrollHorz',
speed: 1000,
...
0
votes
0answers
36 views
jQuery outerWidth() not working on iPad
I want to get the "outerwidth()" of my div-container with jQuery:
var fl = jQuery(".first_line").outerWidth(true);
It´s working fine with a desktop pc but on iPad i only get the device width ...
0
votes
1answer
37 views
jQuery slider slides randomly
I am basically a PHP coder. Right now I am designing a website for a educational consultancy where I need to add a jQuery slider. The slider I have added have originally have width:630px. I needed to ...
0
votes
3answers
101 views
Get Highcharts width
I would like to get the current chart width, I have tried something like this:
chart.width
and
$(this).parent().width()
where chart is
chart = new Highcharts.Chart({ ... })
But doesn't ...
0
votes
1answer
52 views
jquery set div width to other div's width after animation
I'm animating a div to be wider, after the animation I want to set the width of a following list to be the exact same with of the newly animated div, and move this to be under it.
Oddly, when ...
0
votes
0answers
25 views
How to do this jQuery Draggable + setting the width
please look here https://mixpanel.com/segmentation/
drag and find the "Goodbye SQL" section
how could I achieve this result? Yes, I believe it's work with JQuery UI Draggable, but please explain it ...
1
vote
1answer
85 views
jQuery Width on resized Image = full width on Firefox
My script encan.js is setting the width/height of a container for an image, once the image has been resized. This works great in Chrome, but doesn't work in Firefox (mac)! I can't tell why ... any ...
0
votes
2answers
51 views
Match the width of another div which uses width:auto; and then add x amount to it
Is there anyway I can make a div match the width of another div, when the other div uses width:auto; and is changed dynamically depending on the content. Then add an extra amount of pixels to the ...
1
vote
1answer
181 views
jquery get width dynamically as browser width resizes
I am not very experienced with jQuery so would appreciate help with the following, currently I can get the width of a specified div in pixels which is fine, but I would like to develop this further ...
0
votes
1answer
122 views
Jquery and Jqueryui: set width not working after using resizable?
I am writing a grid to show task durations.
I have a set of divs in a display:block and when document is ready I use javascript and jqueryui to:
1) add child divs to the block divs
2) make the child ...
0
votes
1answer
82 views
jQuery if/else view/hide layer
I'm making a responsive website slide bar in edge animate, and I've made 2 slides for 1 slide (So they can adjust responsibly). I want the second slide to show if the window width is below 786px and ...
0
votes
1answer
74 views
Third level of jQuery's menu not auto sizing
I have the following issue:
As you can see the third level of the menu is very compressed. The second level is working perfectly. It's at the exact width of the content.
HTML
<ul id="menu">
...
2
votes
4answers
68 views
Disable jquery function when screen width larger than 480
I'm a newbie (no kidding?!) and I can't get this to work. What am I doing wrong here?
If the screen width is larger than 480 I don't want this function to do anything, only to fire when screen width ...
0
votes
1answer
64 views
After a div animate still behind other div
Situation:
I have 3 div's
|left|center|right|
I have 3 other divs inside left and 3 other inside right.
When I pass in any of this 6 divs, they increase width.
The right side is ok, but the left side, ...
1
vote
4answers
127 views
Jquery to kick in if screen width is less than 500px
I have this code that shows content if clicked. The thing is that this function should only be availible if the screen/device width is 500px maximum. How would I go about doing this?
$(function () {
...
0
votes
1answer
92 views
Get width of the previous list item and calculate current margin
I'm using PHP to dropdown a main menu. My menu looks like this:
<ul class="dropdown_top">
<li style="width:20px;"> /*main categories, width is an exapmle i don't realy know the exact ...
0
votes
3answers
69 views
Changing element width on-the-fly depending of other elements widths
Since I'm not good enough in scripting I can't find right syntax.
Please take a look at Following image. I need to set div.dependable's width as X + 16px, even while window resizing.
I have pretty ...
0
votes
1answer
195 views
JQuery SlideToggle Width Expanding
Hey guys,
I have a glitch in my JQuery. When I hover over each tab area and move horizontally .panel seems to lose its width attribute and either expand or shrink when it slides toggles up. Any ...
0
votes
1answer
59 views
Picture with float right is jumping while resizing of container
I got a website here: http://jaco.zz.mu/ and when you choose about me, and then games to show games menu, for the moment when $(...).animate({width: ...}, 200) is doing the resizing the right ...
0
votes
1answer
63 views
Change the size of dragged clone when hovering droppable?
$(".drag").draggable({
helper: 'clone',
appendTo: "body"
});
$( ".drop" ).droppable({
over: function(event, ui) {
$(ui.draggable).css({width:'30px',height:'30px'});
},
drop: ...
1
vote
3answers
88 views
How to change the size of the tinymce jquery box?
I need to change the width of the tinymce's box to fit in my design and I don't know how. I searched the Internet and didn't find anything relating to the width of the jquery version of tinymce.
...
1
vote
2answers
227 views
jquery detect window resize
I have a question about a site I'm working on regarding detecting when the window is resized. I know this has been discussed previously and I've read through many of the discussions and just couldn't ...
-1
votes
1answer
41 views
jQuery get each images width then add css width to each images
I would like to know how can I get each images widths (many widths) in different li then give that width back to each images via jQuery.
All images have different widths.
Thank you for your help.
0
votes
1answer
148 views
How to get visible height for overflow element in jQuery
I have an element who's overflow is hidden until a function is called. I am trying to determine if the mouse is hovering over this overflow material after I set overflow: visible;, but instead, it ...
0
votes
3answers
91 views
Javascript: Getting the width of child-elements
I have two stacked divs.
The outer div has a fixed width with overflow hidden.
The inner div has content that in total can be larger than the outher div.
How can I get the total width of the ...
0
votes
2answers
117 views
Animation flickering at the end
EDIT: Fixed the animation by removing the CSS transition.
I actually have two problems. The first is at the end of the width animation the UL flickers. I'm not sure why and can't seem to fix.
The ...
0
votes
0answers
42 views
Unable to get Thickbox width
I have code where I'm using a thickbox to open an iframe into it. Inside the iframe we call a seperate website. On the landing page of the site we want to find the height and width of the container so ...
-1
votes
1answer
46 views
How to get list width by width all inside elements with jQuery
Have this problem: i need to get list width by all of inside elements. So, i try to get each elements width and connect them in one peace. But now i have only one element width... Can u help me?
var ...
3
votes
3answers
313 views
How to get an iframe contents width?
I got an iframe in my page. Like this :
<iframe width="600px">
<html>
<head>
</head>
<body>
<p>Some text</p>
...
0
votes
3answers
79 views
Javascript - tell width/height of image that haven't been implemented on the webpage [duplicate]
Possible Duplicate:
Javascript - Function to return width/height of remote image from url
Is it possible to get width and height by just knowing the images location with js? The actual ...








