active questions tagged div - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:03:43Zhttp://stackoverflow.com/feeds/tag/divhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909648/stacking-divs-in-top-of-each-other0Stacking DIVs in top of each other?Kaitsuli2009-12-15T19:09:35Z2009-12-15T20:44:03Z
<p>Hi,</p>
<p>Is it possible to stack up multiple DIVs like:</p>
<pre><code><div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</code></pre>
<p>So that all those inner DIVs have the same X and Y position? By default they all go below each other increasing the Y position by the height of the last previous DIV.</p>
<p>I have a feeling some sort of float or display or other trick could bite?</p>
<p>EDIT: The parent DIV has position relative, so, using position absolute does not seem to work.</p>
http://stackoverflow.com/questions/1909967/what-does-msvc-6-throw-when-an-integer-divide-by-zero-occurs0What does msvc 6 throw when an integer divide by zero occurs?EvilTeach2009-12-15T19:58:28Z2009-12-15T20:18:15Z
<p>I have been doing a bit of experimenting, and have discovered that an exception is being thrown, when an integer divide by zero occurs. </p>
<pre><code>#include <iostream>
#include <stdexcept>
using namespace std;
int main
(
void
)
{
try
{
int x = 3;
int y = 0;
int z = x / y;
cout << "Didn't throw or signal" << endl;
}
catch (std::exception &e)
{
cout << "Caught exception " << e.what() << endl;
}
return 0;
}
</code></pre>
<p>Clearly it is not throwing a std::exception. What else might it be throwing?</p>
http://stackoverflow.com/questions/1909850/overlay-thumbnail-with-remove-image-button2Overlay thumbnail with remove image button?NetCaster2009-12-15T19:39:59Z2009-12-15T20:14:35Z
<p>Hi All</p>
<p>i need to create a remove button that appear over my thumbs when a user hover that image with his mouse a link appear like remove from favorites ?</p>
<p>anyone know how to achieve this ?</p>
<p>an example of what i want is youtube quick list button u find over the videos thumbs ..</p>
<p><a href="http://i50.tinypic.com/fxdu2b.jpg" rel="nofollow">http://i50.tinypic.com/fxdu2b.jpg</a></p>
<p>Please help me if you know how to achieve this</p>
http://stackoverflow.com/questions/225843/how-can-i-have-a-sliding-menu-div-that-doesnt-move-unless-the-page-is-scrolled-d2How can I have a sliding menu div that doesn't move unless the page is scrolled down past a certain point.idlewire2008-10-22T13:59:11Z2009-12-15T18:50:46Z
<p>I have a menu div that I want to slide down so it's always visible, but I want it to be positioned under my title div. I don't want it to move until the top of the menu hits the top of the screen and then stay in place. Basically I want a sliding menu with a maximum height it can slide to.</p>
http://stackoverflow.com/questions/172918/div-100-height-works-on-firefox-but-not-in-ie-what-to-do6Div 100% height works on Firefox but not in IE. What to do?Marcel Tjandraatmadja2008-10-06T00:40:13Z2009-12-15T11:17:01Z
<p>I have a container div that holds two internal divs; both should take 100% width and 100% height within the container.</p>
<p>I set both internal divs to 100% height. That works fine in Firefox, however in IE the divs do not stretch to 100% height but only the height of the text inside them.</p>
<p>The following is a simplified version of my style sheet.</p>
<pre><code>#container
{
height: auto;
width: 100%;
}
#container #mainContentsWrapper
{
float: left;
height: 100%;
width: 70%;
margin: 0;
padding: 0;
}
#container #sidebarWrapper
{
float: right;
height: 100%;
width: 29.7%;
margin: 0;
padding: 0;
}
</code></pre>
<p>Is there something I am doing wrong? Or any Firefox/IE quirks I am missing out?</p>
http://stackoverflow.com/questions/1906057/javascript-bookmarklet0Javascript BookmarkletCarvefx2009-12-15T08:52:04Z2009-12-15T09:11:48Z
<p>Hi,</p>
<p>I've coded a bookmarklet that opens a new window at a certain URL and sends some variables to a PHP using GET.
The problem is I need to have it load the same php and send the same variables but inside a div this time.</p>
<p>Could anyone point me in the right direction please?</p>
http://stackoverflow.com/questions/1880436/making-table-with-resizable-columns-and-selectable-rows-with-jquery-ui0Making table with resizable columns and selectable rows with jQuery UIDmitry2009-12-10T11:43:36Z2009-12-15T00:48:25Z
<p>NOTE: My original question was whether I should use <code><div></code>s or <code><table></code>s for this task. I have found an answer myself: <code><div></code>s are more than twice as slower on Firefox and Chrome if you have ~2000 rows. So you must use <code><table></code>s for this. I decided to reedit my question to show how to do it (table with resizable columns and selectable rows using jQuery UI). Hope that it would be useful for anyone. </p>
<p>I'm making a web application (mainly for data entry & intranet usage). Need to render some data from SQL table in a standart way (rows as rows, columns as columns), but have some requirements:</p>
<ol>
<li>Data are received as JSON array with rigid format and need to be inserted from JavaScript.</li>
<li>Columns must be resizable.</li>
<li>Rows must be selectable.</li>
<li>Body must be scrollable, header must stay above.</li>
</ol>
<p>There are many ready-made JavaScript components for parts of this functionality, but the most complete are bloated, costs much and have bugs.</p>
<p>As I already have to use jQuery-ui for modal dialogs and tabs, I decided to try <strong>resizable</strong> and <strong>selectable</strong> effects. I managed to made them work for a standart HTML table using some tricks. Here is the code.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type='text/javascript' src='../Scripts/jQuery.js'></script>
<script type='text/javascript' src='../Scripts/jQuery-ui.js'></script>
<link href="../Css/ui-lightness/jquery-ui.css" type="text/css" rel="stylesheet" />
<style type='text/css'>
.selectable .ui-selecting { background: #FECA40; }
.selectable .ui-selected { background: #F39814; color: white; }
.NCList table { table-layout:fixed; }
.nc-cell { overflow: hidden; white-space:nowrap; }
.NCList .ui-resizable-e { background: gray; }
.NCList .y-scroll { overflow-y:auto; overflow-x:hidden; }
</style>
<script type="text/javascript">
$(function() {
var element = $('#MyParentDiv');
$(".selectable", element).selectable({filter: 'tr'});
$(".th0", element).resizable({
alsoResize: '#MyParentDiv .header-container',
stop: function(event, ui) {
var width1 = $(".th0", element).width();
$('.col0', element).width(width1);
width1 = $(".header-container", element).width();
$('.y-scroll', element).width(width1);
},
handles: 'e'});
$(".th1", element).resizable({
alsoResize: '#MyParentDiv .header-container',
stop: function(event, ui) {
var width1 = $(".th1", element).width();
$('.col1', element).width(width1);
width1 = $(".header-container", element).width();
$('.y-scroll', element).width(width1);
},
handles: 'e'});
});
</script>
</head>
<body>
<div id="MyParentDiv" class="NCList">
<div class="header-container" style="width:215px;">
<table><thead><tr>
<th><div class="nc-cell th0" style="width:100px;">
Short name
</div></th>
<th><div class="nc-cell th1" style="width:100px;">
Name
</div></th>
</tr></thead></table>
</div>
<div class="y-scroll" style="max-height:100px;width:215px;">
<table class="valuefield">
<tbody class="selectable">
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
<tr><td><div class="nc-cell col0" style="width: 100px">Some test values</div></td>
<td><div class="nc-cell col1" style="width: 100px">Some test values</div></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<html>
</code></pre>
http://stackoverflow.com/questions/707636/how-do-i-determine-when-a-div-element-containing-an-activex-control-changes-siz1How do I determine when a DIV element, containing an ActiveX control, changes size (without polling)?Matt2009-04-01T22:45:00Z2009-12-14T21:00:03Z
<p>I have a DIV that contains an activex control. </p>
<p>This control can resize itself depending on what buttons the user pokes. </p>
<p>When the control resizes itself, I would like to reposition the DIV.</p>
<p>How can I determine when the control or DIV size has changed without polling?</p>
<p>Can it be done?</p>
http://stackoverflow.com/questions/1903178/question-regarding-div-height-adjustment0Question regarding div height adjustmentmathon122009-12-14T20:09:56Z2009-12-14T20:25:24Z
<p>I have a setup that requires a header div and a footer div to stay rooted at the top and bottom of the page respectively, while the content div in the middle fills up the area in between. The content div is set to overflow:auto; so a scroll bar appears when content volume is large enough. Something like this:</p>
<pre><code>+----------------------------------------------+ <-
|header div with fixed height of 90px | |
+----------------------------------------------+ |
|content div with variable height || |
| || <-scroll bar |
| || (if required) |
| || |- total window height
| || |
+----------------------------------------------+ |
|footer div with fixed height of 60px | |
+----------------------------------------------+ <-
</code></pre>
<p>I want the content div alone to change its height in a way that the combination of the three fill the whole window. Is it possible to do it with CSS alone? Thanks.</p>
<p>(Currently the header and footer divs have position:fixed; and content has height:100%; but it looks hideous.)</p>
http://stackoverflow.com/questions/1903061/dynamically-make-top-div-position0dynamically make top div positionChris Bjerken2009-12-14T19:50:41Z2009-12-14T19:58:00Z
<p>So I have created a simple calendar (<a href="http://www.akapa.org/newsite/events/calendar.htm" rel="nofollow">http://www.akapa.org/newsite/events/calendar.htm</a>) and I have a bunch of "More Info" buttons I made from cells. In a table cell to the right are a bunch of hidden DIV's that all appear when you rollover a "More Info" button, obviously giving more details about the calendar date/event.</p>
<p>My problem is that I have to give an exact "top" css position to every one of these hidden div's every single time I add a new event to the calendar. I want to dynamically tell each hidden div to match the "top" css position to match the top position of each "More Info" button. How do I do that?</p>
http://stackoverflow.com/questions/1900746/surrounding-all-content-in-div-with-span-why1Surrounding all content in div with span - why?truppo2009-12-14T12:50:47Z2009-12-14T13:15:47Z
<p>In code we got from a "psd2html"-service, I see a lot of spans surrounding the contents of div-tags.</p>
<p>I know the difference between spans and divs, but I cant figure out why the code looks like this:</p>
<pre><code><div class="forgot-password">
<span><a href="/forgotpassword/">Forgot password?</a></span>
</div>
...
<div>
<span>Sign in</span>
</div>
</code></pre>
<p>Instead of just:</p>
<pre><code><div class="forgot-password">
<a href="/forgotpassword/">Forgot password?</a>
</div>
...
<div>
Sign in
</div>
</code></pre>
<p>I'm guessing its either some kind of cross-browser fix, or perhaps to "prepare" for the future if we want to put more stuff into the divs?</p>
<p><strong>Edit:</strong>
Here is the CSS for the forgot-password part:</p>
<pre><code>div.forgot-password
{
float: left;
width: 145px;
height: 22px;
margin-left: 3px;
}
div.forgot-password span
{
display: block;
float: left;
padding-top: 3px;
padding-left: 0px;
}
div.forgot-password span a
{
color: #C5C5C5;
text-decoration: none;
}
</code></pre>
http://stackoverflow.com/questions/1899069/textarea-scrollbars-overflow-and-hide-div-border0textarea scrollbars overflow and hide div borderName2009-12-14T05:23:53Z2009-12-14T05:23:53Z
<p>I've tried this on many browsers ( via browsershots ) and universally the scrollbars overflow and hide the green border.</p>
<p>I don't want <code>overflow: hidden</code> because that clips the scrollbars.</p>
<p>How do I get the scrollbars inside the border, instead of obscuring the border?</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<div style="border: 1px solid green; margin: 0pt; padding: 0pt; width: 100%; height: 100px;">
<div style="margin: 0pt; padding: 0pt; position: relative; float: left; width: 20%; height: 100%;">
<select style="margin: 0pt; padding: 0pt; width: 100%; height: 100%;" multiple >
<option></option>
</select>
</div>
<div style="position: relative; float: left; width: 80%; height: 100%;">
<form style="margin: 0pt; padding: 0pt; width: 100%; height: 100%; display: inline; position: relative;">
<textarea readonly="readonly" style="margin: 0pt; padding: 0pt; width: 100%; height: 100%; overflow:scroll;" wrap="off" >
</textarea>
</form>
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1898812/replacing-frames-with-code-that-uses-scrollable-div-div-doesnt-maintain-positio0Replacing frames with code that uses scrollable div; div doesn't maintain positionCaveatrob2009-12-14T03:53:08Z2009-12-14T04:16:50Z
<p>I've got an ASP page that I've converted from frames to scrollable divs, but when I post back to the page I lose the position in the scrollable div. The users want me to return back to frames if I can't solve the problem with DIVS.Any ideas? I'm using classic asp.</p>
http://stackoverflow.com/questions/42294/how-do-you-get-the-footer-to-stay-at-the-bottom-of-a-web-page19How do you get the footer to stay at the bottom of a Web page?Bill the Lizard2008-09-03T18:51:17Z2009-12-13T23:19:41Z
<p>I have a simple 2-column layout with a footer that clears both the right and left div in my markup. My problem is that I can't get the footer to stay at the bottom of the page in all browsers. It works if the content pushes the footer down, but that's not always the case. </p>
<h3>Update:</h3>
<p>It's not working properly in Firefox. I'm seeing a strip of background color below the footer when there's not enough content on the page to push the footer all the way down to the bottom of the browser window. Unfortunately, this is the default state of the page. </p>
http://stackoverflow.com/questions/1237570/chrome-resizing-css-background-url-image0Chrome resizing CSS background url imageBrian2009-08-06T08:20:05Z2009-12-13T03:00:02Z
<p>I am using Google Chrome 3.0.196.2 and I noticed that for some reason the #main div's background is shrunk a tad bit, even though it should not be. It tests fine in every other browser but chrome. </p>
<p>Anyone know why?</p>
<p>Link to site: <a href="http://www.ipalaces.org/weird/" rel="nofollow">link text</a></p>
<p>Even have a screen shot: <a href="http://skipall.com/2va.png" rel="nofollow">link text</a>
Notice the green on the right side is cut off, as well as things not lining up.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<STYLE type="text/css">
#main {
border: 10px solid black;
height: 300px;
width: 1000px;
margin-left: auto;
margin-right: auto;
padding-top: 50px;
background: #AAA url("http://www.ipalaces.org/weird/mainbg.gif");
}
#picture {
border-top: 1px solid #EEE;
border-bottom: 1px solid #EEE;
height: 100px;
width: 1000px;
}
</STYLE>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>Imperial Palaces</TITLE>
</HEAD>
<BODY>
<DIV id="main">
<IMG id="picture" src="http://www.ipalaces.org/weird/mainbg.gif" alt="picture">
</DIV>
</BODY>
</HTML>
</code></pre>
http://stackoverflow.com/questions/1894717/how-to-make-underlying-div-unclickable-1How to make underlying div unclickable?Goran2009-12-12T21:14:44Z2009-12-12T21:37:52Z
<p>I made overlay div with:</p>
<pre><code>position: absolute; top: 0; left: 0; widht: 100%; height: 100%;
</code></pre>
<p>Basically I want this overlay div to cover my whole page. And it does what I need, but I also need underlying divs to be unclickable. They are indeed unclickable but only in FF, Safari and Chrome. in IE and Opera you can still click buttons that are underneath.</p>
<p>Does anyone have any idea on how can I achieve this "unclickable underlying behaviour"?</p>
http://stackoverflow.com/questions/1894129/jquery-get-ids-from-class1jQuery: Get ids from classJack2009-12-12T17:34:06Z2009-12-12T18:54:25Z
<p>Hi,<br />
I have a lot of div's and I want to fade this one who is hovered.<br />
How i can get the id of the hovered div?<br />
Is there anyway to do that except calling function(and sendind the id) with "onmouseover"?<br />
Thanks!</p>
http://stackoverflow.com/questions/1877934/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T00:40:11Z2009-12-12T16:57:21Z
<p>hello!
i'm learning it, but i cant find what's wrong in this!
i want the div2 to get data from the form in div1, called formulario.
i would like to know which item is selected and which button was clicked.</p>
<p>main html file:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
{
var params = Form.serialize($(formul));
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</script>
</head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>the php file, prodiv1.php:</p>
<pre><code><?
echo 'exec: prodiv1.php<br>';
print_r($_POST);
echo serialize($_POST);
if (isset($_POST))
{
foreach ($_POST as $key=>$value)
{
echo $key.'=>'.$value."<br>";
}
}
echo "select: ".$_POST['lista'];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>i've tried a lot of things, and seen that it could be done with event observers, httprequests and such, but what i need is quite easy, and probably there's an elegant way to solve it...
i thank in advance any help!
have a nice day.
guillem</p>
http://stackoverflow.com/questions/1893211/div-overlapping-in-firefox0Div overlapping in FirefoxN M2009-12-12T12:05:41Z2009-12-12T14:10:51Z
<p>Hi, Please see the html below</p>
<p>it works fine in IE, but in Firefox it overlaps..please try and give me solution.
When the position of the div inside the td was given static, it's working properly.But i need absolute there since i need to use the left and top attributes.Any help is appreciated.Thanks</p>
<pre><code> <table style="height:auto; position:fixed;">
<tr>
<td style="width:210px;padding:6px 6px 6px 6px;" class="contentBoxcontent">
<div style="LEFT: 20px; WIDTH: 154px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 29px;" ><a href="#">Traffic Light</a></div>
<div style="LEFT: 0px; WIDTH: 161px; CURSOR: move; POSITION: absolute; TOP: 33px; HEIGHT: 110px;" ><img src="../common/Images/rollingstock.png" width="100%" height="100%" /></div>
<div style="LEFT: 0px;WIDTH: 198px; CURSOR: move; POSITION: absolute; TOP: 154px; HEIGHT: 66px;" ><ul><li>Traffic Light Information</li><li>Signalling Information</li><li>Euro Light</li></ul></div>
</td>
<td style="width:210px;padding:6px 6px 6px 6px;" class="contentBoxcontent">
<div style="LEFT: 10px;WIDTH: 154px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 29px;"><a href="#">LED Dialight Iformation</a></div>
<div style="LEFT: 0px;WIDTH: 161px; CURSOR: move; POSITION: absolute; TOP: 33px; HEIGHT: 110px;"><img src="../common/Images/EN-12368_Euro.png" width="100%" height="100%" /></div>
<div style="LEFT: 0px;WIDTH: 198px; CURSOR: move; POSITION: absolute; TOP: 154px; HEIGHT: 66px;"><ul><li>Traffic Light Information</li><li>Signalling Information</li><li>Caltran Signals Light</li></ul></div>
</td>
<td style="width:210px;padding:6px 6px 6px 6px;" class="contentBoxcontent">
<div style="LEFT: 10px;WIDTH: 154px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 29px;"><a href="#">Signalling Information</a></div>
<div style="LEFT: 0px;WIDTH: 161px; CURSOR: move; POSITION: absolute; TOP: 33px; HEIGHT: 110px;"><img src="../common/Images/caltransignals.png" width="100%" height="100%" /></div>
<div style="LEFT: 0px;WIDTH: 198px; CURSOR: move; POSITION: absolute; TOP: 154px; HEIGHT: 66px;"><ul><li>Traffic Light Information</li><li>Signalling Information Light Test Data..</li><li>LED Light</li></ul></div></td>
</tr>
</table>
</code></pre>
http://stackoverflow.com/questions/1891857/how-do-you-stretch-an-image-to-fill-a-div-while-keeping-the-images-aspect-rati0How do you stretch an image to fill a <div> while keeping the image's aspect-ratio?Giffyguy2009-12-12T01:16:08Z2009-12-12T08:57:29Z
<p>I need to make this image stretch to the maximum size possible without overflowing it's <code><div></code> or skewing the image. </p>
<p>I can't predict the aspect-ratio of the image, so there's no way to know whether to use:<br>
<code><img src="url" style="</code><b>width</b><code>: 100%;"></code><br>
vs<br>
<code><img src="url" style="</code><b>height</b><code>: 100%;"></code></p>
<p>I can't use both (i.e. style="width: 100%; height: 100%;") because that will stretch the image to fit the <code><div></code>. </p>
<p>The <code><div></code> has a size set by percentage of the screen, which is also unpredictable.</p>
http://stackoverflow.com/questions/1892052/css-div-height-100-problem1css div height 100% problem?unknown (google)2009-12-12T02:29:36Z2009-12-12T03:04:23Z
<p>I would like a div to take all the screen height, that's why I found the following links:</p>
<ul>
<li><a href="http://www.webmasterworld.com/forum83/200.htm" rel="nofollow">http://www.webmasterworld.com/forum83/200.htm</a></li>
<li><a href="http://www.thefutureoftheweb.com/blog/100-percent-height-interface" rel="nofollow">http://www.thefutureoftheweb.com/blog/100-percent-height-interface</a></li>
</ul>
<p>the tricks: make the container have a specified height, for example: <code>body{height:100%}</code> seems work fine, however, I found that: once you add some doctype claim, for example:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
</code></pre>
<p>It doesn't work, at least at Firefox 3.*, it doesn't work. Any suggestions?</p>
http://stackoverflow.com/questions/1883806/jquery-how-to-only-allow-effect-on-assigned-div-not-children0jquery how to only allow effect on assigned div, not childrenJared2009-12-10T20:30:42Z2009-12-10T21:45:45Z
<p>I have applied an mouseenter effect to a div. When you enter the div, it then animates another div. The problem is, the mouseenter effect applies to the children div as well. How do I apply the effect to just the parent div, but animate the children div?</p>
<p>JS:</p>
<pre><code>$(document).ready(function() {
$('#slideleft').mouseenter(function() {
var $lefty = $(this).children();
$lefty.stop().animate({
left: "0px",
top: "0px"
}, 400 );
});
$('#slideleft').mouseleave(function() {
var $lefty = $(this).children();
$lefty.stop().animate({
left: "-700px",
top: "200px"
}, 400 );
});
});
</code></pre>
<p>HTML</p>
<pre><code><div id="slideleft" class="slide">
<div class="inner">Animate this element's left style property</div>
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow2How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll?Anton2009-12-10T17:03:39Z2009-12-10T17:50:22Z
<p>The question explains it pretty fully, but here's some more detail:</p>
<ol>
<li>I have a <code>div</code> with a fixed height.</li>
<li>Content is dynamically loaded via Ajax and appended to the <code>div</code>.</li>
</ol>
<p>Added content is always positioned at the bottom of the <code>div</code>.</p>
<p><strong>2 pieces of content (no scrolling yet)</strong></p>
<pre><code>-------------------------div--
| |
| |
| |
| |
| some content (10:00 am) |
| |
| some content (10:03 am) |
------------------------------
</code></pre>
<p>Additional content pushes existing content up until the <code>div</code> starts to scroll in the y-direction.</p>
<p><strong>5 pieces of content (1 item scrolled)</strong></p>
<pre><code>-------------------------div--
| some content (10:03 am) ^|
| |
| some content (10:04 am) #|
| #|
| some content (10:07 am) #|
| #|
| some content (10:09 am) v|
------------------------------
</code></pre>
<p>Can this be done with CSS?</p>
<p><strong>EDIT</strong></p>
<p>Must work in Internet Explorer!</p>
http://stackoverflow.com/questions/1881032/how-to-size-a-divs-height-to-its-container-height-using-css0how to size a div's height to its container height, using CSS ?Prakash Raman2009-12-10T13:38:30Z2009-12-10T17:46:35Z
<p>How to size a div's height to its container height, using CSS ?</p>
<pre><code><div class='container'><br>
&nbsp;&nbsp;<div style='display: block; height: 500px'>left</div><br>
&nbsp;&nbsp;<div id='to-be-sized' >right</div><br>
</div>
</code></pre>
http://stackoverflow.com/questions/1880617/creating-a-contact-form-using-divs-with-4-extra-divs-for-corners0Creating a contact form using divs with 4 extra divs for "Corners"?mark smith2009-12-10T12:20:16Z2009-12-10T12:32:53Z
<p>Hi there,</p>
<p>i have tried to create a contact form (a standard form, square in nature but with rounded corners)... I can't use the CSS3 specs so i have an image for each corner..</p>
<p>I have set the images on the background-image and no repeat but it seems if the div is empty then it doesn't display, is there a hack - although prefer an alternative clean method :-)</p>
<p>So on the top level i presume i have 1 div for the Upper-Left (corner) and then the upper-middle (just has a color assigned) and then a div for the upper-right (corner) .. so i presume i need to float all these to the left???</p>
<p>Or am i missing something?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1876070/how-to-specify-to-only-apply-jquery-effect-parameters-based-on-div1how to specify to only apply jquery effect parameters based on div?Jared2009-12-09T19:00:55Z2009-12-09T19:33:08Z
<p>Ok here is what I am trying to do.</p>
<p>I have a few effects I want to apply to several different div containers. Lets say I have a slide effect and a fadeTo effect. Rather then specifying what the div class/id is in the JS code, I would prefer to just be able to apply the effect by just giving the div a custom tag or an additional id/class. I always want to specify the parameters of the effect on the actual div.</p>
<p>For instance.</p>
<pre><code><div id="cssDesign SlideEffect" [Speed, Duration parameters somewhere]></div>
</code></pre>
<p>or</p>
<pre><code><div Customtag="SlideEffect" id="cssDesign" [Speed, Duration parameters somewhere]></div>
</code></pre>
<p>Make sense?</p>
http://stackoverflow.com/questions/1875619/how-do-i-create-series-of-div-and-make-them-accessible-for-jquery-to-modify-them0How do I create series of div and make them accessible for jquery to modify them after a while?Aaron de Windt2009-12-09T17:49:16Z2009-12-09T17:59:28Z
<p>I want to create some DIV from javascript. I don't know how many I will need to create, but I will need to change the back-color of it after a while.</p>
<p>I'm using jQuery in my project. So if it's easier the solution can use jQuery.</p>
http://stackoverflow.com/questions/1873090/problem-with-form-elements-when-div-is-faded-in-from-being-display-none-ie-pro0problem with form elements when div is faded in from being display : none (IE problem)martin2009-12-09T10:51:52Z2009-12-09T10:51:52Z
<p>hi!
on a webpage I've been working on I have a problem which I seem unable to solve. </p>
<p>I have a div with display set to none which I fade in. it contains form-element which are not being shown the way they are supposed to when wieved in IE.</p>
<p>you can look at it at <a href="http://www.orrmyr.se" rel="nofollow">http://www.orrmyr.se</a></p>
<p>Thanks for you help
Martin</p>
http://stackoverflow.com/questions/1866802/iframe-dont-reload-at-page-refresh0 iframe don't reload at page refreshunknown (yahoo)2009-12-08T12:57:08Z2009-12-08T13:14:26Z
<p>is there any way to div or iframe don't reload at page refresh</p>
http://stackoverflow.com/questions/1863672/how-to-make-three-inside-divs-the-same-height0how to make three inside divs the same height?unknown (google)2009-12-07T23:41:59Z2009-12-08T01:56:30Z
<p>I have a container div#content, which contains three divs inside. Now, how could I make sure that three divs inside have the same height? Of course, I hope each div's height could be expanded according to its content. For example:
here is what I tried</p>
<pre><code><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title></title>
<style type="text/css">
#content{background-color:#DDDDD;width:100%;overflow:auto;clear:both;height:100%;}
#col1{background-color:yellow;width:10%;float:left;height:100%;}
#col2{background-color:red;width:30%;float:left;height:100%;}
#col3{background-color:#AAAAAA;width:10%;float:left;;height:100%;}
</style>
</head>
<body>
<div id="content">
<div id="col1">
<script language="javascript">
for(i=0;i<1000;i++){
document.write(i+"<br />");
}
</script>
</div>
<div id="col2">
<script language="javascript">
for(i=0;i<100;i++){
document.write(i+"<br />");
}
</script>
</div>
<div id="col3">
<script language="javascript">
for(i=0;i<10;i++){
document.write(i+"<br />");
}
</script>
</div>
</code></pre>
<p>
</p>