<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: html</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Clear Input Field Value When Selected</title>
        <link>http://www.posteet.com/view/1862</link>
        <description>
        <![CDATA[<pre>function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = &quot;&quot;
}

// Then call this function using the 'onfocus' value of your input box:

&lt;input value=&quot;Your Comment&quot; onfocus=&quot;clearDefault(this)&quot; type=&quot;text&quot;&gt;</pre> <a href="http://www.posteet.com/tags/clear">[clear]</a>  <a href="http://www.posteet.com/tags/default">[default]</a>  <a href="http://www.posteet.com/tags/empty">[empty]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/input">[input]</a>  <a href="http://www.posteet.com/tags/js">[js]</a>  <a href="http://www.posteet.com/tags/onfocus">[onfocus]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Wed, 21 Oct 2009 21:15:12 +0200</pubDate>

            <category>clear</category>
            <category>default</category>
            <category>empty</category>
            <category>html</category>
            <category>input</category>
            <category>js</category>
            <category>onfocus</category>
    
    </item>

  
    <item>
        <title>Forzar un salto de página en la impresión html xhtml</title>
        <link>http://www.posteet.com/view/1802</link>
        <description>
        <![CDATA[<pre>&lt;STYLE&gt;
 H1.SaltoDePagina
 {
     PAGE-BREAK-AFTER: always
 }
&lt;/STYLE&gt;

&lt;!--En el sitio en que quieras forzar el salto de página deberás poner el tag h1 aplicando el estilo SaltoDePagina definido anteriormente--&gt;

&lt;H1 class=SaltoDePagina&gt; &lt;/H1&gt;</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/impresion">[impresion]</a>  <a href="http://www.posteet.com/tags/usabilidad">[usabilidad]</a> ]]>        </description>
        <dc:creator>jacinmontava</dc:creator>
        <pubDate>Tue, 01 Sep 2009 13:48:45 +0200</pubDate>

            <category>css</category>
            <category>html</category>
            <category>impresion</category>
            <category>usabilidad</category>
    
    </item>

  
    <item>
        <title>HTML/CSS: aligner verticalement une image et un texte sur une même ligne</title>
        <link>http://www.posteet.com/view/1707</link>
        <description>
        <![CDATA[<pre>En HTML:
&lt;img src=&quot;...&quot; align=&quot;absmiddle&quot; /&gt; Texte

En CSS :
&lt;img src=&quot;...&quot; style=&quot;vertical-align:middle&quot; /&gt; Texte</pre> <a href="http://www.posteet.com/tags/absmiddle">[absmiddle]</a>  <a href="http://www.posteet.com/tags/align">[align]</a>  <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/images">[images]</a>  <a href="http://www.posteet.com/tags/img">[img]</a>  <a href="http://www.posteet.com/tags/textes">[textes]</a>  <a href="http://www.posteet.com/tags/vertical">[vertical]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sat, 30 May 2009 13:28:42 +0200</pubDate>

            <category>absmiddle</category>
            <category>align</category>
            <category>css</category>
            <category>html</category>
            <category>images</category>
            <category>img</category>
            <category>textes</category>
            <category>vertical</category>
    
    </item>

  
    <item>
        <title>How to Turn Off Form Autocompletion</title>
        <link>http://www.posteet.com/view/1697</link>
        <description>
        <![CDATA[<pre>&lt;!-- Add autocomplete = &quot;off&quot; in the form tag --&gt;

&lt;!-- Example --&gt;
&lt;form name=&quot;form1&quot; id=&quot;form1&quot; method=&quot;post&quot; autocomplete=&quot;off&quot;
  action=&quot;http://www.example.com/form.cgi&quot;&gt;
[...]
&lt;/form&gt;</pre> <a href="http://www.posteet.com/tags/autocompletion">[autocompletion]</a>  <a href="http://www.posteet.com/tags/firefox">[firefox]</a>  <a href="http://www.posteet.com/tags/forms">[forms]</a>  <a href="http://www.posteet.com/tags/html">[html]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 10 May 2009 00:09:24 +0200</pubDate>

            <category>autocompletion</category>
            <category>firefox</category>
            <category>forms</category>
            <category>html</category>
    
    </item>

  
    <item>
        <title>HTML CSS Trick for wrapping long lines with PRE tag</title>
        <link>http://www.posteet.com/view/1642</link>
        <description>
        <![CDATA[<pre>pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/pre">[pre]</a>  <a href="http://www.posteet.com/tags/wrap">[wrap]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Fri, 27 Mar 2009 23:38:30 +0100</pubDate>

            <category>css</category>
            <category>html</category>
            <category>pre</category>
            <category>wrap</category>
    
    </item>

  
    <item>
        <title>[HTML/Javascript] upload a file / submit a form when a file is selected</title>
        <link>http://www.posteet.com/view/1586</link>
        <description>
        <![CDATA[<pre>&lt;input type=&quot;file&quot; onchange=&quot;this.submit()&quot; name=&quot;myfile&quot; /&gt;</pre> <a href="http://www.posteet.com/tags/file">[file]</a>  <a href="http://www.posteet.com/tags/form">[form]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/javascript">[javascript]</a>  <a href="http://www.posteet.com/tags/select">[select]</a>  <a href="http://www.posteet.com/tags/selected">[selected]</a>  <a href="http://www.posteet.com/tags/submit">[submit]</a>  <a href="http://www.posteet.com/tags/upload">[upload]</a> ]]>        </description>
        <dc:creator>aric</dc:creator>
        <pubDate>Fri, 27 Feb 2009 18:05:28 +0100</pubDate>

            <category>file</category>
            <category>form</category>
            <category>html</category>
            <category>javascript</category>
            <category>select</category>
            <category>selected</category>
            <category>submit</category>
            <category>upload</category>
    
    </item>

  
    <item>
        <title>How to Control Tab Order in HTML (tabindex attribute)</title>
        <link>http://www.posteet.com/view/1553</link>
        <description>
        <![CDATA[<pre>&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;Controlling TAB Order&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;form&gt;
    Field 1 (first tab selection):
    &lt;input type=&quot;text&quot; name=&quot;field1&quot; tabindex=1 /&gt;&lt;br /&gt;
    Field 2 (third tab selection):
    &lt;input type=&quot;text&quot; name=&quot;field2&quot; tabindex=3 /&gt;&lt;br /&gt;
    Field 3 (second tab selection):
    &lt;input type=&quot;text&quot; name=&quot;field3&quot; tabindex=2 /&gt;&lt;br /&gt;
  &lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre> <a href="http://www.posteet.com/tags/forms">[forms]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/input">[input]</a>  <a href="http://www.posteet.com/tags/tab">[tab]</a>  <a href="http://www.posteet.com/tags/tabindex">[tabindex]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 08 Feb 2009 14:34:43 +0100</pubDate>

            <category>forms</category>
            <category>html</category>
            <category>input</category>
            <category>tab</category>
            <category>tabindex</category>
    
    </item>

  
    <item>
        <title>Dropdown nav menu without js</title>
        <link>http://www.posteet.com/view/1402</link>
        <description>
        <![CDATA[<pre>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; lang=&quot;fr&quot;&gt;                                
  &lt;head&gt;                                                         
    &lt;meta content=&quot;text/html; charset=UTF-8&quot; http-equiv=&quot;content-type&quot; /&gt;                                                           
    &lt;title&gt;:: Demo dropdown nav menu without js ::&lt;/title&gt;
    &lt;style type=&quot;text/css&quot;&gt;


/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
=================================================================== */

.menu {width:745px; height:32px; position:relative; z-index:100;border-right:1px solid #000; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:746px; w\idth:745px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:149px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:138px; height:30px; border:1px solid #000; border-width:1px 0 1px 1px; background:#09c; padding-left:10px; line-height:29px; font-weight:bold;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#d4d8bd url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 130px center;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center;}
.menu ul ul :hover &gt; a.drop {background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#b2ab9b;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:31px;left:0; width:149px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#d4d8bd; color:#000; height:auto; line-height:1em; padding:5px 10px; width:128px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#000; background:#b7d186;}
.menu :hover &gt; a, .menu ul ul :hover &gt; a {color:#000; background:#b7d186;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

&lt;/style&gt;

  &lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;menu&quot;&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;../menu/index.html&quot;&gt;DEMOS&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;

	&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/zero_dollars.html&quot;&gt;zero dollars advertising page&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/embed.html&quot;&gt;wrapping text around images&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/form.html&quot;&gt;styled form&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/nodots.html&quot;&gt;active focus&lt;/a&gt;&lt;/li&gt;

	&lt;li&gt;&lt;a class=&quot;drop&quot; href=&quot;../menu/hover_click.html&quot;&gt;hover/click with no borders&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;

&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/form.html&quot;&gt;styled form&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/nodots.html&quot;&gt;removing active/focus borders&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/hover_click.html&quot;&gt;hover/click&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;

&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
	&lt;/li&gt;

	&lt;li&gt;&lt;a class=&quot;drop&quot; href=&quot;../menu/shadow_boxing.html&quot;&gt;shadow boxing&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/form.html&quot;&gt;styled form&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/nodots.html&quot;&gt;removing active/focus borders&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/hover_click.html&quot;&gt;hover/click&lt;/a&gt;&lt;/li&gt;

		&lt;/ul&gt;

&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a class=&quot;drop&quot; href=&quot;../menu/old_master.html&quot;&gt;image map for detailed information&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/form.html&quot;&gt;styled form&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/nodots.html&quot;&gt;removing active/focus borders&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/hover_click.html&quot;&gt;hover/click&lt;/a&gt;&lt;/li&gt;

		&lt;/ul&gt;
&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/bodies.html&quot;&gt;fun with background images&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/fade_scroll.html&quot;&gt;fade scrolling&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../menu/em_images.html&quot;&gt;em image sizes compared&lt;/a&gt;&lt;/li&gt;

	&lt;/ul&gt;

&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;../boxes/index.html&quot;&gt;BOXES&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;spies.html&quot;&gt;a coded list of spies&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;vertical.html&quot;&gt;vertical menu&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;expand.html&quot;&gt;enlarging unordered list&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;enlarge.html&quot;&gt;link images&lt;/a&gt;&lt;/li&gt;

	&lt;li&gt;&lt;a href=&quot;cross.html&quot;&gt;non-rectangular&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;jigsaw.html&quot;&gt;jigsaw links&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;circles.html&quot;&gt;circular links&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;../mozilla/index.html&quot;&gt;MOZILLA&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
	&lt;ul&gt;

	&lt;li&gt;&lt;a href=&quot;../mozilla/dropdown.html&quot;&gt;drop down menu&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/cascade.html&quot;&gt;cascading menu&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/content.html&quot;&gt;content:&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/moxbox.html&quot;&gt;mozzie box&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/rainbow.html&quot;&gt;I can build a rainbow with transparent borders&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/snooker.html&quot;&gt;a snooker cue using border art&lt;/a&gt;&lt;/li&gt;

	&lt;li&gt;&lt;a href=&quot;../mozilla/target.html&quot;&gt;target practise&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/splittext.html&quot;&gt;two tone headings&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../mozilla/shadow_text.html&quot;&gt;shadow text&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;../ie/index.html&quot;&gt;EXPLORER&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;../opacity/index.html&quot;&gt;OPACITY&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;

&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;../opacity/colours.html&quot;&gt;a colour wheel using opaque colours&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../opacity/picturemenu.html&quot;&gt;a menu using opacity&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../opacity/png.html&quot;&gt;partial opacity&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;../opacity/png2.html&quot;&gt;partial opacity II&lt;/a&gt;&lt;/li&gt;

	&lt;li&gt;&lt;a class=&quot;drop&quot; href=&quot;../menu/hover_click.html&quot;&gt;HOVER/CLICK&lt;!--[if IE 7]&gt;&lt;!--&gt;&lt;/a&gt;&lt;!--&lt;![endif]--&gt;

&lt;!--[if lte IE 6]&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;![endif]--&gt;
		&lt;ul class=&quot;left&quot;&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/form.html&quot;&gt;styled form&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/nodots.html&quot;&gt;removing active/focus borders&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;../menu/hover_click.html&quot;&gt;hover/click&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;

&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
	&lt;/li&gt;

	&lt;/ul&gt;
&lt;!--[if lte IE 6]&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/a&gt;&lt;![endif]--&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;


&lt;/body&gt;
&lt;/html&gt;</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/dropdown">[dropdown]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/menu">[menu]</a>  <a href="http://www.posteet.com/tags/nav">[nav]</a> ]]>        </description>
        <dc:creator>stephane</dc:creator>
        <pubDate>Fri, 19 Dec 2008 18:22:26 +0100</pubDate>

            <category>css</category>
            <category>dropdown</category>
            <category>html</category>
            <category>menu</category>
            <category>nav</category>
    
    </item>

  
    <item>
        <title>change the folder index / cambiar el indice de una carpeta</title>
        <link>http://www.posteet.com/view/810</link>
        <description>
        <![CDATA[<pre>DirectoryIndex first_index.html second_index.html third_index.html
#if &quot;first_index.html&quot; does not found apache tries to find the next index (&quot;second_index.html&quot;), if the index lists ends apache
# gives the 404 error.
# sorry for my bad english, it's not my natal languaje

#si &quot;first_index.html&quot; no es encontrado muestra el proximo en la lista (&quot;third_index.html&quot;), si la lista se acaba da error 404</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/error">[error]</a>  <a href="http://www.posteet.com/tags/errores">[errores]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/http">[http]</a>  <a href="http://www.posteet.com/tags/index">[index]</a>  <a href="http://www.posteet.com/tags/indice">[indice]</a> ]]>        </description>
        <dc:creator>eltupper</dc:creator>
        <pubDate>Thu, 06 Mar 2008 18:38:51 +0100</pubDate>

            <category>apache</category>
            <category>error</category>
            <category>errores</category>
            <category>html</category>
            <category>http</category>
            <category>index</category>
            <category>indice</category>
    
    </item>

  
    <item>
        <title>Solapamiento Div's y Flash</title>
        <link>http://www.posteet.com/view/723</link>
        <description>
        <![CDATA[<pre>&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0&quot; width=&quot;500&quot; height=&quot;200&quot; title=&quot;slip&quot;&gt;
&lt;param name=&quot;movie&quot; value=&quot;RUTA_ARCHIVO&quot;&gt;
&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;
&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt; &lt;!-- este es el parametro que hara que los div's esten por encima del objeto flash --&gt; 
&lt;embed src=&quot;RUTA_ARCHIVO&quot; width=&quot;500&quot; height=&quot;200&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
&lt;/object&gt;</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/flash">[flash]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/object">[object]</a> ]]>        </description>
        <dc:creator>jacinmontava</dc:creator>
        <pubDate>Mon, 04 Feb 2008 10:54:11 +0100</pubDate>

            <category>css</category>
            <category>flash</category>
            <category>html</category>
            <category>object</category>
    
    </item>

  
    <item>
        <title>make IE behave like a standards compatible browser / ace que IE acepte los estandares</title>
        <link>http://www.posteet.com/view/715</link>
        <description>
        <![CDATA[<pre>/*
original: http://code.google.com/p/ie7-js/
*/
&lt;head&gt;
    &lt;!--[if lt IE 8]&gt;
    &lt;script src=&quot;http://ie7-js.googlecode.com/svn/version/2.0(beta2)/IE8.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
    &lt;![endif]--&gt;
&lt;/head&gt;</pre> <a href="http://www.posteet.com/tags/explorer">[explorer]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/ie">[ie]</a>  <a href="http://www.posteet.com/tags/IE 5">[IE 5]</a>  <a href="http://www.posteet.com/tags/IE 6">[IE 6]</a>  <a href="http://www.posteet.com/tags/IE 7">[IE 7]</a>  <a href="http://www.posteet.com/tags/IE 8">[IE 8]</a>  <a href="http://www.posteet.com/tags/IE internet">[IE internet]</a>  <a href="http://www.posteet.com/tags/internet explorer">[internet explorer]</a> ]]>        </description>
        <dc:creator>eltupper</dc:creator>
        <pubDate>Sat, 02 Feb 2008 22:29:06 +0100</pubDate>

            <category>explorer</category>
            <category>html</category>
            <category>ie</category>
            <category>IE 5</category>
            <category>IE 6</category>
            <category>IE 7</category>
            <category>IE 8</category>
            <category>IE internet</category>
            <category>internet explorer</category>
    
    </item>

  
    <item>
        <title>Youtube estándar con (X)HTML válido</title>
        <link>http://www.posteet.com/view/656</link>
        <description>
        <![CDATA[<pre>&lt;object data=&quot;http://www.youtube.com/v/O0G7iKj6PS0&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;350&quot;&gt; &lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/O0G7iKj6PS0&quot; /&gt; &lt;img border=&quot;0&quot; src=&quot;/img/video.png&quot; alt=&quot;Video (Objeto multimedia)&quot; /&gt; &lt;/object&gt;</pre> <a href="http://www.posteet.com/tags/estandares">[estandares]</a>  <a href="http://www.posteet.com/tags/html">[html]</a> ]]>        </description>
        <dc:creator>jacinmontava</dc:creator>
        <pubDate>Tue, 08 Jan 2008 09:14:36 +0100</pubDate>

            <category>estandares</category>
            <category>html</category>
    
    </item>

  
    <item>
        <title>Etiqueta base del HTML</title>
        <link>http://www.posteet.com/view/643</link>
        <description>
        <![CDATA[<pre>&lt;!--La etiqueta &lt;base&gt; se coloca entre las estas etiquetas &lt;head&gt;&lt;/head&gt; --&gt;

&lt;!--&lt;base href=&quot;http://www.dominio.com/&quot; /&gt;--&gt;

&lt;base href=&quot;&lt;?php echo 'http://'. $_SERVER['HTTP_HOST'].'/';?&gt;&quot; /&gt;

&lt;!--Los enlaces se harían a partir de la raíz del sitio--&gt;

&lt;link href=&quot;/css/style.css&quot; media=&quot;screen&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;

&lt;img src=&quot;/imagenes/imagen.jpg&quot; alt=&quot;texto alternativo&quot; /&gt;

&lt;a href=&quot;/paginas/enlace/&quot; title=&quot;texto alternativo&quot;&gt;Enlace&lt;/a&gt;</pre> <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/php">[php]</a>  <a href="http://www.posteet.com/tags/xhtml">[xhtml]</a> ]]>        </description>
        <dc:creator>regoremor</dc:creator>
        <pubDate>Tue, 01 Jan 2008 23:13:28 +0100</pubDate>

            <category>html</category>
            <category>php</category>
            <category>xhtml</category>
    
    </item>

  
    <item>
        <title>Mostrar / Ocultar una capa con JavaSctipt.</title>
        <link>http://www.posteet.com/view/637</link>
        <description>
        <![CDATA[<pre>// MOSTRAR - OCULTAR
	
function mostrarOcultar(id) {
	divID = document.getElementById(id);
	if(divID.style.display == &quot;&quot;)
		divID.style.display = &quot;none&quot;;
	else
		divID.style.display = &quot;&quot;;
}

// Enlace y Capa

&lt;a href=&quot;#&quot; onclick=&quot;mostrarOcultar('capa'); return false;&quot;&gt;Mostrar-Ocultar&lt;/a&gt;
&lt;div id=&quot;capa&quot; style=&quot;display: none;&quot;&gt;Contenido de la Capa.&lt;/div&gt;</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/dom">[dom]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/javascript">[javascript]</a> ]]>        </description>
        <dc:creator>yasakani</dc:creator>
        <pubDate>Mon, 31 Dec 2007 07:16:54 +0100</pubDate>

            <category>css</category>
            <category>dom</category>
            <category>html</category>
            <category>javascript</category>
    
    </item>

  
    <item>
        <title>Changer une image dynamiquement</title>
        <link>http://www.posteet.com/view/431</link>
        <description>
        <![CDATA[<pre>Supposons que vous ayez dans votre page html la déclaration suivante :

&lt;object id='SvgView' data='/static/pictures/default.svg' type='image/svg+xml' width='1025' height='643'&gt;
&lt;/object&gt;


Du côté javascript, on a une fonction qui effectue le remplacement :

function displaySVG(fileName)
{
    var svgView  = document.getElementById(&quot;SvgView&quot;);
    if (svgView)
    {
        // Récupère l'adresse complète de l'ancienne image
        var  str = svgView.data.toString();
        // Cherche le nom du fichier situé aprés l'adresse du serveur :
        // on suppose que le format de str est du type  'http://192.168.122.56/pictures/truc/default.svg'
        var  pos = str.indexOf('/', 7);
        // Extraction de l'adresse du serveur
        var  url = str.substring(0, pos);
        // Remplace l'ancienne adresse par la nouvelle
        Dom.replaceObjectData(&quot;SvgView&quot;, url + fileName);
    }
}</pre> <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/javascript">[javascript]</a> ]]>        </description>
        <dc:creator>linuski</dc:creator>
        <pubDate>Wed, 14 Nov 2007 16:54:07 +0100</pubDate>

            <category>html</category>
            <category>javascript</category>
    
    </item>


</channel>
</rss>
