JQuery :: Element Overflows Containing Block When Parent Border/padding Change - Not When Parent's Margin Changes

Sep 24, 2011

Demonstration page: [url]

Adjust the CSS margins of the BODY element with the first slider. The yellow P (paragraph) element resizes to fit its smaller containing block, as I would expect.

Then, adjust the CSS border or padding of the BODY element with the second and third sliders. The P element does not resize, though its origin changes. Instead, it overflows its containing block.

Finally, adjust the margins again. The P element snaps back into its containing block.

As you can see from the source, this is jQuery 1.6.4 and jQueryUI 1.8 pulled from googleapis.com.

Edit: Client is Google Chrome16.0.889.0 dev-m.

View 2 Replies


ADVERTISEMENT

JQuery :: Datepicker Plugin - Icon Seems To Have No Padding/margin/spacing Between The Input Box And The Image

Nov 22, 2010

I have successfully implemented the Datepicker plugin but am having very difficult problems with the image alignment of the calender icon.

The icon seems to have no padding/margin/spacing between the input box and the image, and is also not aligned correctly.

I have viewed the documentation but can see no reference on how formatting is achieved.. I looked at jquery-ui css (redmond) and can see no reference to how this is aligned.

View 2 Replies View Related

Removing Window Padding/margin Within IE.

Dec 31, 2006

I have just been making a JavaScript chat applet, which should open in a new child window. It does all of this fine, and works within Firefox beatifully. However, IE thinks it's necessary to stop my
iFrames from spaning the entire length and width of the Window, and add about 7-8mm of padding/margin to the inside of the Window.

I can't figure out, whether it's adding it to the inside of the window, or the outside of the frame.

Please could someone point out how I might be able to go about removing this padding? It's rediculous. I don't mind the border one bit, but no matter what I do, it's chopping off 14-16mm of the bottom iFrame. The window needs to be resizable, so unfortunately, the bottom iFrame is a
set pixel hight, but the top iFrame works with a percentage (i.e 100% of the frameset surrounding it).

View 3 Replies View Related

JQuery :: Way To Highlight Element Inside Parent Element / When Mouse Hovers Over Child Element?

Oct 4, 2010

i have a menu generated by a list with nested lists. i want the parent link to stay highlighted when the mouse hovers over the sub menus. because those sub menus are also generated by jquery (qtip), CSS alone won't do it (triedul.topnav li:hover a {background-color: #F00;}).is there a way to do this using jquery?

View 15 Replies View Related

Erasing Border And Padding In Javascript Window

Jul 23, 2005

I'm setting up a picture album site. When i click on a
thumbnail or a picture, a larger picture pops up in a javascript
window. But it has a space on the top and on the left of my larger pic
in the pop-up window. How do i get rid of that? Also, i want the
window to fit my my pic so there's no space whatsoever around it.

Here is what i have:

View 19 Replies View Related

JQuery :: Use BlockUI From Within An Iframe To Block The Parent Iframe

Aug 18, 2009

I am loading a collection of frames as follows (from jsp source, so ignore <%= %> blocks):

<html>
<frameset name="MNGM_OUTER" rows="50,*,20" framespacing=0
frameborder=0 border=0>
<frame name="MNGM_TOP" src="control/top.jsp" scrolling=no

[Code].....

View 1 Replies View Related

Jquery :: Get The Parent Element Value?

Dec 16, 2011

I have a table with a couple of rows with two cells in each row and each cell has couple of info like office name, address and phone number etc. Using jquery for each, the address is being pulled out from each cell and fed into google map geocoder object to get the point and plot it in the map. Now at each hit of an Address value, I would also like to grab the unique value of phone and office name from the current cell from which jquery is getting address value..I need those values so i can display those values in the InfoWindow of the map? How do I get those values?

<table class="OfficeInfo" border="0" style="width: 100%" cellspacing="10px" cellpadding="15px">
<tr>
<td class="Office1" style="width=40%">

[code]....

View 5 Replies View Related

JQuery :: Select The Next Element That Isn't Of The Same Parent?

Apr 17, 2010

I have:

<p>Click here</p>
<div>cool content #1</div>
<p>Click here</p>
<div>cool content #2</div>

How if I click either <p> how do I select the <div> immediately following?

$(p + div).dosomething()

isn't working.

View 3 Replies View Related

JQuery :: How To Find A Parent Element

Aug 13, 2009

I want to find the parent element of some element.

$("tr input").each(function (i) { //loop input elements within tr's
if(this.name == "cid[]"){
//checkbox

[code]....

View 2 Replies View Related

JQuery :: Move An Element To End Of It's Parent?

Jun 1, 2010

I have the following

<div id="container">
<div class="row">blah</div>
<div class="row">blah</div>
<div class="row">blah</div>
<div class="row">blah</div>
<div class="row">blah</div>
</div>

I would like to move the upper most row which I'm referencing by the eq: $('.row').eq(0) to the end of div#container I thought I could use append or appendTo, but these don't seem to be working.

View 3 Replies View Related

JQuery :: Select Only The Parent Element?

Oct 28, 2011

I use one outer div and a div as a child element

<div id="parent"><div>lorem ipsum</div></div>

and I need to register a click on the parent div. If I use

$("#parent")click(function(){
// my code
});

the code starts also if I click on the child div. So how can I start my function only if there was a click on the parent div outsite the child div?

View 5 Replies View Related

JQuery :: Select An Element's Parent?

Aug 1, 2009

I'm trying to update a script I found out there in order to fit better my needs. The first step I want to update is the capability to bind a dynamic number of anchors.

Right now with the HTML below

<ul id="product_links">
<li class="first" ><a>FIRST></a></li>
<li class="second">SECOND</a></li>
<li class="third"><a>THIRD</a></li>

[Code].....

View 5 Replies View Related

JQuery :: Get Parent Element Of Div Based On Div Content?

Nov 19, 2010

I try to get the parent element of a div based on the div content:

($('div:contains("' + BaseHtml + '")').parent().html();

where BaseHtml is the content of the div. but this always return null. How can I do?

View 2 Replies View Related

JQuery :: Get Attribute Of The Parent Element Into A Variable?

May 8, 2009

but having fun with it. Would like tolearn how to do the following...2) Find the parent <li>.3) Grab the value of the attribute "jcarouselindex" and put it in avariable to be used elsewhere.Sample code below...

<ul id="carousel">
<li class="carousel-item" jcarouselindex="1">
<a href="/someurl"><img src="someimage.jpg" alt="" />

[code]....

View 1 Replies View Related

Jquery :: Get The Fieldset Element Rather Than Just Land On It As The Third Parent

Jan 4, 2010

Code JavaScript:
$('input[id^="system"]').change(function() {
var id = $(this).attr('id');
var parents = $('#' + id)
.parents()
.map(function () {
[Code]...

At the moment the the third parent of the input is a fieldset, which is fine, but I would like the script to explicitly get the fieldset element, rather than just land on it as the third parent.

View 2 Replies View Related

JQuery :: Change IMG SRC On Hover Parent DIV

May 27, 2011

I'm working on a carousel with slides containing text and an image. On slide: hover, the text changes color, but I also need to change the picture. Normally I could use:
onmouseover="document.getElementById('niceImg').src='.....'"
To achieve this goal, but since the slides are dynamically rendered through wordpress, I can only use classes and no ID's. My main question is, how do I change a div's child img src (actually it's parent div > div > img) without assigning an ID to the particular image?

Code:
<div class="spotlightslidecontainer">
<a href="#">
<div class="spotlighticon">
<img src="img/spotlight/thumbactive.png"/>
</div>
<div class="spotlighttext">
<p>text</p>
</div>
</a>
</div>

So here the src of thumbactive.png needs to change to something else on spotlightslidecontainer:hover

View 3 Replies View Related

IE: Unable To Modify The Parent Container Element Before The Child Element Is Closed

Mar 16, 2010

The bit of code in bold in the code below is giving me this error in IE: Error: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; Tablet PC 2.0; InfoPath.2; OfficeLiveConnector.1.4; .NET CLR 3.0.30729; OfficeLivePatch.1.3; MSN OptimizedIE8;ENGB)Timestamp: Tue, 16 Mar 2010 15:07:11 UTC Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)

[Code]....

View 1 Replies View Related

JQuery :: Check Whether Selected Element Belongs To Particular Parent?

Jul 1, 2011

I have the list structure like this [code]...

My problem is

If I click on link which has ID ArtechGallery and which belongs to menu1 list

If I click a link which has ID HPGallery and which belongs to menu2 list

So, then, how to check whether the clicked element belongs to Menu1 or Menu2 ?

View 3 Replies View Related

JQuery :: Toggle Checkbox When Parent Element Is Clicked

Aug 6, 2010

I have an <input type="checkbox"> whose immediate parent is an <a> tag. The <a> is significantly larger than the <input>.

I want the checkbox to toggle on/offwhether the <a> is clicked or the checkbox itself. I also wantto store the value of the checkbox after it changes.

This sounds simple butI'm having trouble with the event bubbling (as in, I don't understand it).

Here is my current code.

HTML:

View 4 Replies View Related

JQuery :: Find The Index Of The Parent Of A Specific Element?

May 14, 2009

My question is quite simple with an example:

[Code]...

View 1 Replies View Related

JQuery :: Pull Element Out Of IFrame Into Parent Document?

May 28, 2009

I'm working on a project and within a document I have content being loaded into an iframe. When a user clicks on an item in the iframe, a pop-up div is loaded using the facebox plugin but it's obviously contained by the iframe. Is there any way that I can pull that element out of the iframe into the parent document? Or at least position it so it looks like it's part of the parent document and not the iframe? My reasoning for this is sizing and positioning. I want to expand the size of the facebox div and position it over top of some of the parent document elements but, since it's within the iframe, I'm limited to the size of the iframe and positioning is limited to being within the iframe.

View 2 Replies View Related

JQuery :: Parent Element Jumps When Child Fades In Or Out?

May 3, 2009

i am curious if there is a simple solution to this very common problemim sure lots get.i have a div with some children items in it and when i fade one ofthem out the div jumps down to the appropriate height. i would like toknow is there a simple way to animate the div to shrink nicely insteadof just jumping to its new size?

View 2 Replies View Related

JQuery :: Stop Event Happening If Already Over Parent Element

Jul 5, 2011

I have a problem that suprisingly (not) only affects IE.

I have a hover/mouseover event when a users cursor enters a div, but because there is text inside my div IE is replaying the event if I hover in/out of the area that has text even though it is in the same div.

This is what I have:

Code:
$('.reason-1').mouseover(function(){
$('#first-r').stop(true, true).fadeIn(600);
$('#first-r-info').stop(true, true).delay(400).fadeIn(800);

[Code].....

how can I stop IE playing the action again if the user is still inside the same list element?

View 2 Replies View Related

JQuery :: Change The Height Of The Parent Of A Visible Li?

Nov 24, 2010

I use a CSS-Menu with this structure:

<div class="tabs">
<ul class="menu">
<li id="item-1">
<a href="#item-1">Tab 1</a>

[Code]....

Via CSS .tabs will be position:relative and the divs within the li are position:absolute to stack. This works fine.

Unfortunately, in some cases the content of li is too height and overflow the parent. I'm looking for a way to find out the displayed li and this height to apply it on the parent elements (CSS) height.

View 3 Replies View Related

JQuery :: Change Parent Div Height After Child?

May 29, 2009

I have the following layout.

.panel
{
position:relative;
width:580px;

[Code]....

The parent (class="panelContent") div contains a child element that is generated/rendered last. This makes the child element #ReportViewer1 overlap the parent (class="rptViewer"). Can I jQuerytize the parent div to adjust it's size after the child renders so it is contained/displayed in the parent?

View 3 Replies View Related

JQuery :: Target Change Css Attribute Of P Tag When Hovering Over Parent Div

Jul 7, 2009

I have the following code

[Code]...

I have the .box class applied to a div basically I what to hover over the div change the background color of the div and at the same time change the text color of any text wrapped in p tags. I am getting close but with this code every instance of the p tag gets swapped out I need to know how to target only p tags in the div that I am mouseing over

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved