<?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>KaveriTech Technical Blog &#187; HTML</title>
	<atom:link href="http://techblog.kaveritech.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.kaveritech.com</link>
	<description>Findings, Tips &#38; Tricks</description>
	<lastBuildDate>Tue, 25 May 2010 12:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>IE &#8211; checkbox onchange event</title>
		<link>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/</link>
		<comments>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:50:56 +0000</pubDate>
		<dc:creator>satya</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[onchange]]></category>
		<category><![CDATA[onclick]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=433</guid>
		<description><![CDATA[Onchange-event and IE are no friends. Well, it took time for me to find this out.
Yes, IE does not support onchange event.
But NS and Mozilla do.
Solution: Use the onclick event to accomplish the same. This way, all the browsers will be  
  
]]></description>
			<content:encoded><![CDATA[<p>Onchange-event and IE are no friends. Well, it took time for me to find this out.</p>
<p>Yes, IE does not support onchange event.</p>
<p>But NS and Mozilla do.</p>
<p><strong>Solution:</strong> Use the onclick event to accomplish the same. This way, all the browsers will be <img src='http://techblog.kaveritech.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;"><strong style="color: black; background-color: #bbbbff;"> </strong><strong style="color: black; background-color: #bbffff;"> </strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML Emails</title>
		<link>http://techblog.kaveritech.com/2009/12/15/html-emails/</link>
		<comments>http://techblog.kaveritech.com/2009/12/15/html-emails/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 12:23:43 +0000</pubDate>
		<dc:creator>Swanand</dc:creator>
				<category><![CDATA[Emails]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[HTML-Email]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=417</guid>
		<description><![CDATA[Here is a link to an excellent article about HTML emails:
http://24ways.org/2009/rock-solid-html-emails
For further reading: The Email Standards Project
]]></description>
			<content:encoded><![CDATA[<p>Here is a link to an excellent article about HTML emails:</p>
<p><a href="http://24ways.org/2009/rock-solid-html-emails">http://24ways.org/2009/rock-solid-html-emails</a></p>
<p>For further reading: <a href="http://www.email-standards.org/">The Email Standards Project</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2009/12/15/html-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails: Strip HTML tags</title>
		<link>http://techblog.kaveritech.com/2009/09/11/ruby-on-rails-strip-html-tags/</link>
		<comments>http://techblog.kaveritech.com/2009/09/11/ruby-on-rails-strip-html-tags/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 18:05:35 +0000</pubDate>
		<dc:creator>Satish Natarajan</dc:creator>
				<category><![CDATA[Regex]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=249</guid>
		<description><![CDATA[The regex below removes html tags from a given string
str = &#60;&#60;HTML_TEXT
&#60;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd"&#62;
&#60;html&#62;
&#60;body&#62;
  &#60;h1&#62;Title&#60;/h1&#62;
  &#60;p&#62;Blah Blah Blah!&#60;/p&#62;
&#60;/body&#62;
&#60;/html&#62;
HTML_TEXT

puts str.gsub(/&#60;\/?[^&#62;]*&#62;/, "")
]]></description>
			<content:encoded><![CDATA[<p>The regex below removes html tags from a given string</p>
<pre><span>str</span> <span>=</span> <span>&lt;&lt;</span><span>HTML_TEXT</span><span>
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd"&gt;
&lt;html&gt;
&lt;body&gt;
  &lt;h1&gt;Title&lt;/h1&gt;
  &lt;p&gt;Blah Blah Blah!&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</span><span>HTML_TEXT</span>

<span>puts</span> <span>str</span><span>.</span><span>gsub</span><span>(/</span><span>&lt;<span>\/</span>?[^&gt;]*&gt;</span><span>/,</span> <span>"</span><span>")</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2009/09/11/ruby-on-rails-strip-html-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer: Version 7 &#8211; No Buttons?</title>
		<link>http://techblog.kaveritech.com/2009/08/25/internet-explore-version-7-no-buttons/</link>
		<comments>http://techblog.kaveritech.com/2009/08/25/internet-explore-version-7-no-buttons/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 02:44:45 +0000</pubDate>
		<dc:creator>Satish Natarajan</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=198</guid>
		<description><![CDATA[Looks like IE7 does not support &#60;button&#62;&#60;/button&#62; tags. So if you want to make a submit or any other button &#8211; please using &#60;input type=&#8221;button&#8221;&#62;&#60;/input&#62;
]]></description>
			<content:encoded><![CDATA[<p>Looks like IE7 does not support &lt;button&gt;&lt;/button&gt; tags. So if you want to make a submit or any other button &#8211; please using &lt;input type=&#8221;button&#8221;&gt;&lt;/input&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2009/08/25/internet-explore-version-7-no-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
