User Christoph - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:49:32Zhttp://stackoverflow.com/feeds/user/132873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div0Different background-color for left and right half of divChristoph2009-08-14T11:20:03Z2009-08-14T11:27:56Z
<p>Hi, I have a centered div layout. The left side of the div in the background should be white and the right side should be green. Both should extend to infinity. </p>
<p>I think it should be quite simple but I just don't get it right now. Any easy solution?
Thank you!</p>
<pre><code>-----------------------------------------------------
(div 1) __________________________
|(div 2) | |
| | |
| | |
<- white | white | green | green ->
| | |
| | |
|________________|_________|
------------------------------------------------------
</code></pre>
http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h1jQuery nextAll -- Click on h-element toggles all p-elements until next hChristoph2009-07-03T15:54:28Z2009-07-03T21:25:29Z
<p>Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:</p>
<pre><code><h3>The First Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<h3>The Second Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
</code></pre>
<p>How can I toggle all p elements belonging to a certain question? My JS toggles ALL following p elements on the page:</p>
<pre><code>$(document).ready(function(){
$("p").hide();
$("h3").click(function(){
$(this).nextAll("p").toggle();
});
});
</code></pre>
<p>(I cannot use div's or classes). Thank you for any help!</p>
http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277370#1277370Comment by Christoph on Different background-color for left and right half of divChristoph2009-08-14T12:32:11Z2009-08-14T12:32:11ZThank you, works out pretty cool! Didn't even know you can stretch bg-images.http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277373#1277373Comment by Christoph on Different background-color for left and right half of divChristoph2009-08-14T11:35:54Z2009-08-14T11:35:54ZBut this only works if the line between the two outer divs is exactly at 50% of the screen (which it is not in my layout)?http://stackoverflow.com/questions/1277339/different-background-color-for-left-and-right-half-of-div/1277354#1277354Comment by Christoph on Different background-color for left and right half of divChristoph2009-08-14T11:28:09Z2009-08-14T11:28:09ZThe centered div2 is already inside that other div1. It is centered by using margin:auto. I don't think I can put two other divs inside there?http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h/1079969#1079969Comment by Christoph on jQuery nextAll -- Click on h-element toggles all p-elements until next hChristoph2009-07-03T16:12:28Z2009-07-03T16:12:28ZThank you so much, works perfectly!