<?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>Weblog Tools Collection &#187; XHTML 1.1</title>
	<atom:link href="http://weblogtoolscollection.com/archives/category/xhtml-tips/xhtml-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<lastBuildDate>Mon, 13 Feb 2012 13:00:19 +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>WP Plugin: Limited Use Password</title>
		<link>http://weblogtoolscollection.com/archives/2006/07/16/wp-plugin-limited-use-password/</link>
		<comments>http://weblogtoolscollection.com/archives/2006/07/16/wp-plugin-limited-use-password/#comments</comments>
		<pubDate>Sun, 16 Jul 2006 13:58:02 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[LinkyLoo]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[XHTML 1.1]]></category>
		<category><![CDATA[limited_use]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress_plugin]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/07/16/wp-plugin-limited-use-password/</guid>
		<description><![CDATA[WP Plugin: Limited Use Password Send a &#8220;limited use&#8221; password to a password protected post on your WordPress blog with this plugin without sharing the actual password.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blindmindseye.com/software-projects/wordpress-plugins/limited-use-password-plugin/">WP Plugin: Limited Use Password</a> Send a &#8220;limited use&#8221; password to a password protected post on your WordPress blog with this plugin without sharing the actual password.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2006/07/16/wp-plugin-limited-use-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Validate forms XHTML 1.0 Strict</title>
		<link>http://weblogtoolscollection.com/archives/2004/08/16/validate-forms-xhtml-10-strict/</link>
		<comments>http://weblogtoolscollection.com/archives/2004/08/16/validate-forms-xhtml-10-strict/#comments</comments>
		<pubDate>Mon, 16 Aug 2004 16:28:55 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[XHTML 1.0]]></category>
		<category><![CDATA[XHTML 1.1]]></category>
		<category><![CDATA[XHTML Tips]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2004/08/16/validate-forms-xhtml-10-strict/</guid>
		<description><![CDATA[I ran into some trouble with the forms validation because I was using a javascript:document.formname.submit() which would require a name for the form. As it turns out, form name is deprecated in XHTML 1.0 Strict and XHTML 1.1. In other words &#60;form name="blah" ... &#62; is not valid in XHTML 1.0 Strict and XHTML 1.1. To get around this issue, I used &#60;form id="blah" ... &#62; and in my link I used javascript:document.forms['blah'].submit(); which validates correctly. Also, to get around the carriage return problem in input tags of forms (for input tags to validate correctly in XHTML 1.0 Strict and XHTML 1.1, they have to surrounded by &#60;p&#62; or h1 etc. ) I surrounded my inputs by (gasp) fieldsets and then hid it by styling the fieldset so I could get them all in one line. Im sure a lot of people know about these already, but this is for [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into some trouble with the forms validation because I was using a javascript:document.formname.submit() which would require a name for the form. As it turns out, form name is deprecated in XHTML 1.0 Strict and XHTML 1.1.<br />
In other words <code> &lt;form name="blah" ... &gt; </code>is not valid in XHTML 1.0 Strict and XHTML 1.1.</p>
<p>To get around this issue, I used <code>&lt;form id="blah" ... &gt; </code> and in my link I used <code> javascript:document.forms['blah'].submit(); </code> which validates correctly. </p>
<p>Also, to get around the carriage return problem in input tags of forms (for input tags to validate correctly in XHTML 1.0 Strict and XHTML 1.1, they have to surrounded by &lt;p&gt; or h1 etc. ) I surrounded my inputs by (gasp) fieldsets and then hid it by styling the fieldset so I could get them all in one line. Im sure a lot of people know about these already, but this is for my future reference.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2004/08/16/validate-forms-xhtml-10-strict/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Validate XHTML before you post</title>
		<link>http://weblogtoolscollection.com/archives/2004/08/10/validate-xhtml-before-you-post/</link>
		<comments>http://weblogtoolscollection.com/archives/2004/08/10/validate-xhtml-before-you-post/#comments</comments>
		<pubDate>Tue, 10 Aug 2004 14:04:05 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[Cool Scripts]]></category>
		<category><![CDATA[WordPress Hack]]></category>
		<category><![CDATA[XHTML 1.0]]></category>
		<category><![CDATA[XHTML 1.1]]></category>
		<category><![CDATA[XHTML Tips]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2004/08/10/validate-xhtml-before-you-post/</guid>
		<description><![CDATA[Following up on an old article form Jesse Ruderman I wanted to have a way from within WordPress to validate XHTML through the Quicktags buttons. I rewrote the &#8220;Bloggidate&#8221; set of hacks to work from within WordPress. So this will let you validate the content of your post before you actually post it to the blog to ensure things do not ever break in terms of validation. Just type in the post and click on validate from the quicktags. The installation is relatively simple and I have included functions for both XHTML 1.0 Transitional and XHTML 1.0 Strict. You can download the instructions from here: http://weblogtoolscollection.com/b2-img/validatexhtml.txt PS: Tested and working in both FF and IE Again, much of the code comes from Jesse Ruderman, so thanks go out to him.]]></description>
			<content:encoded><![CDATA[<p>Following up on an old article form <a href="http://www.squarefree.com/archives/000031.html">Jesse Ruderman</a> I wanted to have a way from within WordPress to validate XHTML through the Quicktags buttons. I rewrote the &#8220;Bloggidate&#8221; set of hacks to work from within WordPress.</p>
<p>So this will let you validate the content of your post before you actually post it to the blog to ensure things do not ever break in terms of validation. Just type in the post and click on validate from the quicktags.</p>
<p>The installation is relatively simple and I have included functions for both XHTML 1.0 Transitional and XHTML 1.0 Strict.<br />
You can download the instructions from here:<br />
<a href="http://weblogtoolscollection.com/b2-img/validatexhtml.txt">http://weblogtoolscollection.com/b2-img/validatexhtml.txt</a><br />
PS: Tested and working in both FF and IE</p>
<p>Again, much of the code comes from Jesse Ruderman, so thanks go out to him.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2004/08/10/validate-xhtml-before-you-post/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Form Bookmarklets</title>
		<link>http://weblogtoolscollection.com/archives/2004/07/20/form-bookmarklets/</link>
		<comments>http://weblogtoolscollection.com/archives/2004/07/20/form-bookmarklets/#comments</comments>
		<pubDate>Tue, 20 Jul 2004 19:30:12 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[Cool Scripts]]></category>
		<category><![CDATA[LinkyLoo]]></category>
		<category><![CDATA[XHTML 1.0]]></category>
		<category><![CDATA[XHTML 1.1]]></category>
		<category><![CDATA[XHTML Tips]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2004/07/20/form-bookmarklets/</guid>
		<description><![CDATA[Form Bookmarklets: Some very useful such as the bookmarklet to show hidden form fields which can be edited and others are sinister such as the password field exposer. Oh, and while you are at it, check out the blogidate XHTML 1.1 Stric bookmarklet that lets you validate your XHTML in the textareas. Extremely nifty!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.squarefree.com/bookmarklets/forms.html">Form Bookmarklets</a>: Some very useful such as the bookmarklet to show hidden form fields which can be edited and others are sinister such as the password field exposer. Oh, and while you are at it, check out the blogidate XHTML 1.1 Stric bookmarklet that lets you validate your XHTML in the textareas. Extremely nifty!</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2004/07/20/form-bookmarklets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XHTML Tips and Tricks</title>
		<link>http://weblogtoolscollection.com/archives/2004/06/19/xhtml-tips-and-tricks/</link>
		<comments>http://weblogtoolscollection.com/archives/2004/06/19/xhtml-tips-and-tricks/#comments</comments>
		<pubDate>Sat, 19 Jun 2004 14:19:04 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Ethics]]></category>
		<category><![CDATA[XHTML 1.0]]></category>
		<category><![CDATA[XHTML 1.1]]></category>
		<category><![CDATA[XHTML Tips]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2004/06/19/xhtml-tips-and-tricks/</guid>
		<description><![CDATA[In keeping with my previous post about promoting better programming/coding/markup/style practices among present developers and designers, I have decided to add a couple of categories to this blog and promise to add a few articles every week to those categories. XHTML syntax, better semantics, (common) validation issues and fixes for them, better explanation of validation errors are fair game. I invite my readers to contribute to this process as well and would appreciate a small post if and when you solve a complicated (or simple) validation issue for yourself. On a similar note, I am still looking for more authors for this blog. WordPress people are, as always, more than welcome, but my focus is on getting some authors for other blog tools such as Drupal, MT, Bloxsom etc. If you would like to write (and conversely get exposure for your site/blog/tool) a couple of articles a month for weblogtoolscollection.com, [...]]]></description>
			<content:encoded><![CDATA[<p>In keeping with my previous post about promoting better programming/coding/markup/style practices among present developers and designers, I have decided to add a couple of categories to this blog and promise to add a few articles every week to those categories. XHTML syntax, better semantics, (common) validation issues and fixes for them, better explanation of validation errors are fair game. I invite my readers to contribute to this process as well and would appreciate a small post if and when you solve a complicated (or simple) validation issue for yourself.</p>
<p>On a similar note, I am still looking for more authors for this blog. WordPress people are, as always, more than welcome, but my focus is on getting some authors for other blog tools such as Drupal, MT, Bloxsom etc. If you would like to write (and conversely get exposure for your site/blog/tool) a couple of articles a month for weblogtoolscollection.com, please register and send me an email with the registration information so I can give you the proper permissions.</p>
<p>Upcoming (planned, or half written) articles in this series:</p>
<ul>
<li>Better Link Name Choices</li>
<li>Validating Forms in XHTML 1.1 Strict</li>
<li>&#8220;Script Language&#8221; Boo Boos</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2004/06/19/xhtml-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  weblogtoolscollection.com/archives/category/xhtml-tips/xhtml-11/feed/ ) in 0.93388 seconds, on Feb 14th, 2012 at 1:11 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 14th, 2012 at 2:11 pm UTC -->
