<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>the XCEPtion proves the rule &#187; HTML</title>
	<atom:link href="http://www.xcep.net/blog/tag/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xcep.net/blog</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 09:51:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[HTML] onChange Dropdown / Select mit background-color</title>
		<link>http://www.xcep.net/blog/2009/11/03/html-onchange-dropdown-select-mit-background-color/index.php</link>
		<comments>http://www.xcep.net/blog/2009/11/03/html-onchange-dropdown-select-mit-background-color/index.php#comments</comments>
		<pubDate>Mon, 02 Nov 2009 23:15:02 +0000</pubDate>
		<dc:creator>tXptr</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[background-color]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[onchange]]></category>
		<category><![CDATA[SELECT]]></category>

		<guid isPermaLink="false">http://www.xcep.net/blog/?p=257</guid>
		<description><![CDATA[Mit diesem Workaround wird Hintergrundfarbe der ausgewählten Option bei entsprechender Auswahl in das Select-Feld übernommen. 1 2 3 4 5 6 7 8 9 &#60;select id=&#34;yourRating&#34; onchange=&#34;document.getElementById('yourRating').style.backgroundColor = this[this.selectedIndex].style.backgroundColor;&#34;&#62; &#60;option&#62; &#60;/option&#62; &#60;option style=&#34;background-color:#1BBD00;&#34; value=&#34;1&#34;&#62;1&#60;/option&#62; &#60;option style=&#34;background-color:#9CBD04;&#34; value=&#34;2&#34;&#62;2&#60;/option&#62; &#60;option style=&#34;background-color:#EC0303;&#34; value=&#34;3&#34;&#62;3&#60;/option&#62; &#60;option style=&#34;background-color:#C0C0C0;&#34; value=&#34;4&#34;&#62;4&#60;/option&#62; &#60;option style=&#34;background-color:#BD8EB1;&#34; value=&#34;5&#34;&#62;5&#60;/option&#62; &#60;/select&#62; // Dank geht an sempfh]]></description>
			<content:encoded><![CDATA[<p>Mit diesem Workaround wird Hintergrundfarbe der ausgewählten Option bei entsprechender Auswahl in das Select-Feld übernommen.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;select id=&quot;yourRating&quot;
onchange=&quot;document.getElementById('yourRating').style.backgroundColor = this[this.selectedIndex].style.backgroundColor;&quot;&gt;
  &lt;option&gt; &lt;/option&gt;
  &lt;option style=&quot;background-color:#1BBD00;&quot; value=&quot;1&quot;&gt;1&lt;/option&gt;
  &lt;option style=&quot;background-color:#9CBD04;&quot; value=&quot;2&quot;&gt;2&lt;/option&gt;
  &lt;option style=&quot;background-color:#EC0303;&quot; value=&quot;3&quot;&gt;3&lt;/option&gt;
  &lt;option style=&quot;background-color:#C0C0C0;&quot; value=&quot;4&quot;&gt;4&lt;/option&gt;
  &lt;option style=&quot;background-color:#BD8EB1;&quot; value=&quot;5&quot;&gt;5&lt;/option&gt;
&lt;/select&gt;</pre></td></tr></table></div>

<p>// Dank geht an <a href="http://twitter.com/sempfh">sempfh</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xcep.net/blog/2009/11/03/html-onchange-dropdown-select-mit-background-color/index.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Z-Index eines Flashmovies bzw. wie lege ich ein DIV über ein Flash-Movie?</title>
		<link>http://www.xcep.net/blog/2009/10/25/z-index-eines-flashmovies-bzw-wie-lege-ich-ein-div-uber-ein-flash-movie/index.php</link>
		<comments>http://www.xcep.net/blog/2009/10/25/z-index-eines-flashmovies-bzw-wie-lege-ich-ein-div-uber-ein-flash-movie/index.php#comments</comments>
		<pubDate>Sun, 25 Oct 2009 14:42:41 +0000</pubDate>
		<dc:creator>tXptr</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flashmovie]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[legen]]></category>
		<category><![CDATA[transparent]]></category>
		<category><![CDATA[übereinander]]></category>
		<category><![CDATA[wmode]]></category>
		<category><![CDATA[Z-Index]]></category>

		<guid isPermaLink="false">http://www.xcep.net/blog/?p=250</guid>
		<description><![CDATA[Eigentlich ganz einfach! Man muss lediglich folgenden Parameter in den Aufruf des Flashmovies eintragen: param name=&#34;wmode&#34; value=&#34;transparent&#34; Und im &#60;embed&#62;-Tag: wmode=&#34;transparent&#34;]]></description>
			<content:encoded><![CDATA[<p>Eigentlich ganz einfach! Man muss lediglich folgenden Parameter in den Aufruf des Flashmovies eintragen:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">param name=&quot;wmode&quot; value=&quot;transparent&quot;</pre></div></div>

<p>Und im &lt;embed&gt;-Tag:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">wmode=&quot;transparent&quot;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.xcep.net/blog/2009/10/25/z-index-eines-flashmovies-bzw-wie-lege-ich-ein-div-uber-ein-flash-movie/index.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

