<?xml version="1.0" encoding="iso-8859-1"?>
<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/">
	<channel>
		<title>Client Side Development</title>
		<link>http://techportal.forumotion.com/client-side-development-f4/-t1.htm</link>
		<description>HTML, CSS, Javascript and other client side Development</description>
		<lastBuildDate>Tue, 27 May 2008 10:59:39 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Client Side Development</title>
			<url>http://illiweb.com/fa/prosilver/site_logo.gif</url>
			<link>http://techportal.forumotion.com/client-side-development-f4/-t1.htm</link>
		</image>
		<item>
			<title>Speed up your website</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/speed-up-your-website-t280.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description><![CDATA[Hi, 
<br />

<br />
visit this article and see the examples for optimization of website.
<br />

<br />
<a href="http://www.codeproject.com/KB/HTML/SpeedUpWebsite.aspx" target="_blank">http://www.codeproject.com/KB/HTML/SpeedUpWebsite.aspx</a>
<br />

<br />

<br />

<br />
Regards
<br />
<font color="orange">Sakthi</font>]]></description>
			<category>Client Side Development</category>
			<pubDate>Tue, 27 May 2008 10:59:39 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/speed-up-your-website-t280.htm#356</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/speed-up-your-website-t280.htm</guid>
		</item>
		<item>
			<title>FirewallScript Provides PHP-Based Protection</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/firewallscript-provides-php-based-protection-t276.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>FirewallScript has just launched a software-based security service that can be used on any server that supports PHP5, and even provides support for shared hosts.



The firewall is very similar in function to the popular open source firewall ModSecurity, but according to co-founder Ron Myers, there are some important differences. For one, a ModSecurity installation is server-wide, meaning that nobody on a shared hosting plan is able to install or modify its settings. This inevitably leads to  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 25 Apr 2008 03:57:38 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/firewallscript-provides-php-based-protection-t276.htm#351</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/firewallscript-provides-php-based-protection-t276.htm</guid>
		</item>
		<item>
			<title>HTML View Source Protect</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/html-view-source-protect-t258.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>View Source protect can be done in two ways 



1. &lt;body oncontextmenu='return false;'&gt; - just disables the right click on the browser 



2. Many a times there is a situation where an organization wants no one to right click, copy and paste the page, print or view source etc. To achieve this one should deactivate the mouse right button and the keyboard right click button. 

But the same thing can be achieved with the help of the menu bar. We have to deactivate Alt key to restrict  ...</description>
			<category>Client Side Development</category>
			<pubDate>Wed, 19 Mar 2008 11:45:31 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/html-view-source-protect-t258.htm#331</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/html-view-source-protect-t258.htm</guid>
		</item>
		<item>
			<title>Amazing Scroll bars is here</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/amazing-scroll-bars-is-here-t200.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Use this scrollbar style into ur html page.



Ex:



&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;

&quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;

&lt;html&gt;

&lt;head&gt;

&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;

&lt;title&gt;Untitled Document&lt;/title&gt;

&lt;style type=&quot;text/css&quot;&gt;

.s {

scrollbar-face-color:#868686;

scrollbar-base-color:#868686;

scrollbar-arrow-color:#FFFFFF;

scrollbar-track-color:#FFFFFF;

scrollbar-shadow-color:#EBF5FF;

scrollbar-highlight-color:#EBF5FF;

scrollbar-3dlight-color:#9D9D9D;

scrollbar-darkshadow-Color:#9D9D9D;

}

&lt;/style&gt;

&lt;/head&gt;



&lt;body&gt;

&lt;div  ...</description>
			<category>Client Side Development</category>
			<pubDate>Sat, 16 Feb 2008 04:12:33 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/amazing-scroll-bars-is-here-t200.htm#256</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/amazing-scroll-bars-is-here-t200.htm</guid>
		</item>
		<item>
			<title>Disable Right Click</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/disable-right-click-t163.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Here i give code for disable the right click 



&lt;script language=JavaScript&gt;

&lt;!--



//Disable right mouse click Script

//By Maximus (maximusatnsimail.com) w/ mods by DynamicDrive

//For full source code, visit http://www.dynamicdrive.com



var message=&quot;Function Disabled!&quot;;



///////////////////////////////////

function clickIE4(){

if (event.button==2){

alert(message);

return false;

}

}



function clickNS4(e){

if (document.layers||document.getElementById&amp;&amp;!document  ...</description>
			<category>Client Side Development</category>
			<pubDate>Sat, 19 Jan 2008 05:48:51 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/disable-right-click-t163.htm#210</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/disable-right-click-t163.htm</guid>
		</item>
		<item>
			<title>W3C offers HTML 5 draft</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/w3c-offers-html-5-draft-t165.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Upgrade to Web spec boosts interoperability and adds 2D graphics and audio and video backing, but it will need strong support from browsers 



The first major upgrade to the HTML specification since 1997, HTML 5, was published in an early draft form Tuesday by the World Wide Web Consortium, featuring APIs for drawing two-dimensional graphics and control of audio and video content. The final version of the specification is not expected until late-2010, and it will be up to browser vendors to  ...</description>
			<category>Client Side Development</category>
			<pubDate>Wed, 23 Jan 2008 04:01:21 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/w3c-offers-html-5-draft-t165.htm#212</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/w3c-offers-html-5-draft-t165.htm</guid>
		</item>
		<item>
			<title>Online color references</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/online-color-references-t160.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>For getting color codes online visit the below link



http://www.visibone.com/colorlab

http://www.w3schools.com/html/html_colornames.asp

http://webpageworkshop.co.uk/main/color_codes

http://www.w3.org/TR/2002/WD-css3-color-20020219/#html4

http://www.hypergurl.com/colorchart.html

Regards

Sakthi </description>
			<category>Client Side Development</category>
			<pubDate>Fri, 18 Jan 2008 11:58:03 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/online-color-references-t160.htm#207</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/online-color-references-t160.htm</guid>
		</item>
		<item>
			<title>Ten CSS tricks you may not know</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/ten-css-tricks-you-may-not-know-t149.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>1. CSS font shorthand rule

When styling fonts with CSS you may be doing this:



font-weight: bold;

font-style: italic;

font-variant: small-caps;

font-size: 1em;

line-height: 1.5em;

font-family: verdana,sans-serif



There's no need though as you can use this CSS shorthand property:



font: bold italic small-caps 1em/1.5em verdana,sans-serif



Much better! Just a few of words of warning: This CSS shorthand version will only work if you're specifying both the font-size and  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:22:06 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/ten-css-tricks-you-may-not-know-t149.htm#189</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/ten-css-tricks-you-may-not-know-t149.htm</guid>
		</item>
		<item>
			<title>Separate style sheet for old browsers</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/separate-style-sheet-for-old-browsers-t148.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>As you should be aware certain styles will not work in old browsers such as the version 4 browsers. If you want to use CSS but maintain support for these old browsers it is recommended that you create a style sheet especially for these old browsers.



This guide just shows you the most common way of including two style sheets so that old browsers will read from one style sheet which newer more compliant browsers will overwrite with your more advanced style sheet.





The Code



The  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:21:16 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/separate-style-sheet-for-old-browsers-t148.htm#188</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/separate-style-sheet-for-old-browsers-t148.htm</guid>
		</item>
		<item>
			<title>SEO Benefits Of CSS</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/seo-benefits-of-css-t147.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>This article is most useful if you are somewhat familiar with HTML and CSS. I explain the concepts well enough that you do not have to be an expert, but I want to provide material that will introduce you to more advanced design in ways you can understand.



Like many other web designers, I began laying out web pages using graphical tools and discovered the wonders of tables for layout without anyone telling me to use them. Since browser support for CSS Is better than it used to be, and tables  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:20:40 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/seo-benefits-of-css-t147.htm#187</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/seo-benefits-of-css-t147.htm</guid>
		</item>
		<item>
			<title>CSS - Maximum benefits</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/css-maximum-benefits-t146.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>Why to use it and how to use it properly



If you don’t use CSS on your web pages and you have many tables and content on them, chances are that your HTML file size will be quite big. Fact is that we live in a busy world, and people are not will to wait more than 5 seconds web page to load.



From the other side some web developers implement the CSS on wrong way. They write their CSS in HTML code of the page, like this:



&lt;html&gt;

&lt;head&gt;

&lt;title&gt;My Page&lt;/title&gt;

&lt;style&gt;

A

{

font-family:  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:19:55 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/css-maximum-benefits-t146.htm#186</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/css-maximum-benefits-t146.htm</guid>
		</item>
		<item>
			<title>CSS Standards</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/css-standards-t145.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>Cascading Style Sheets (CSS) are there to define the look and feel of one or several (x)HTML documents. By using CSS we separate content from presentation. Anything that is visual should be achieved via CSS (granted the targeted browsers permits that).



CSS should reside in its own document and should only be mixed with HTML when absolutely necessary. Furthermore, CSS should enhance the current markup and not replace it.

Applying CSS to documents.



CSS can be applied to one or several  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:19:13 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/css-standards-t145.htm#185</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/css-standards-t145.htm</guid>
		</item>
		<item>
			<title>Ten more CSS tricks you may not know</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/ten-more-css-tricks-you-may-not-know-t144.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>Ten CSS tricks you may not know has proven to be such a success that we decided it was time to offer you ten more CSS tricks that you may not know.

1. Block vs. inline level elements



Nearly all HTML elements are either block or inline elements. The characteristics of block elements include:



    * Always begin on a new line

    * Height, line-height and top and bottom margins can be manipulated

    * Width defaults to 100% of their containing element, unless a width is specified



Example  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 12:18:17 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/ten-more-css-tricks-you-may-not-know-t144.htm#184</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/ten-more-css-tricks-you-may-not-know-t144.htm</guid>
		</item>
		<item>
			<title>CSS Hacks</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/css-hacks-t138.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>In-CSS hacks



One of the drawbacks of conditional comments is that they require changes to the HTML source. Unfortunately, there is no equivalent to conditional comments in CSS. Instead, if you must use in-CSS hacks, you must use some other much less reliable techniques, often involving the exploitation of browser bugs.

Easy selectors



Most in-CSS hacks deal with selector bugs. The following is a list of browser version ranges and the beginnings of selectors that are known to select  ...</description>
			<category>Client Side Development</category>
			<pubDate>Fri, 11 Jan 2008 03:47:31 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/css-hacks-t138.htm#178</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/css-hacks-t138.htm</guid>
		</item>
		<item>
			<title>Disabling View Source, Copy and Paste, and Printing</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/disabling-view-source-copy-and-paste-and-printing-t128.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Many a times there is a situation where an organization wants no one to right click, copy and paste the page, print or view source etc. To achieve this one should deactivate the mouse right button and the keyboard right click button.



But the same thing can be achieved with the help of the menu bar. We have to deactivate Alt key to restrict the user from accessing menu items.



After doing this there is one more possibility from where the user can directly take the stuff from the page.  ...</description>
			<category>Client Side Development</category>
			<pubDate>Wed, 09 Jan 2008 12:40:09 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/disabling-view-source-copy-and-paste-and-printing-t128.htm#168</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/disabling-view-source-copy-and-paste-and-printing-t128.htm</guid>
		</item>
		<item>
			<title>How we protect our .swf work</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/how-we-protect-our-swf-work-t93.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>If you mean that you dont want others to download and watch your swf files, then yes, you could save it, indirectly though. Basically they will download it, but wont be able to watch it. Firstly you could check whether the domain in which the swf movie is running is allowed using LocalConnection object. This is probably used extensively by Flash game sites. Here's how you could implement it.

(Toggle Plain Text)



var loc:LocalConnection = new LocalConnection();

var domain:String = loc.domain();



if  ...</description>
			<category>Client Side Development</category>
			<pubDate>Mon, 24 Dec 2007 08:54:06 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/how-we-protect-our-swf-work-t93.htm#125</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/how-we-protect-our-swf-work-t93.htm</guid>
		</item>
		<item>
			<title>Data binding with Castor</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/data-binding-with-castor-t83.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>Data binding with Castor, Part 1: Install and set up Castor



Download, install, and configure Castor for data binding.

				

Data binding with Castor, Part 2: Marshall and unmarshall XML

In the last article of this series, you downloaded, installed, and set up Castor. In this article, you'll learn how to convert your Java(TM) classes to XML and transform that XML back into Java code, as well as how Castor works and how to design your classes to function well with the API. 	  	



The  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 20 Dec 2007 03:33:38 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/data-binding-with-castor-t83.htm#115</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/data-binding-with-castor-t83.htm</guid>
		</item>
		<item>
			<title>JavaScript - Frequently Asked Questions</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/javascript-frequently-asked-questions-t26.htm</link>
			<dc:creator>Admin</dc:creator>
			<description>Index:

Q:How do I debug JavaScript as used on a webpage? 

A:There are many approaches that you can take to debugging JavaScript. Let's discuss what you may do in the code itself first:



The most common is to insert alerts into the code, where you alert the values and types of variables, function arguments, and object properties. If you are doing code forking to support different ways of doing things, you may use confirms to force a certain path to be taken. If you want to be able to cut  ...</description>
			<category>Client Side Development</category>
			<pubDate>Sat, 08 Dec 2007 08:27:36 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/javascript-frequently-asked-questions-t26.htm#34</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/javascript-frequently-asked-questions-t26.htm</guid>
		</item>
		<item>
			<title>Testing of Javascript Codes</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/testing-of-javascript-codes-t72.htm</link>
			<dc:creator>technicalganesh</dc:creator>
			<description><![CDATA[How to strengthen your client-side code and improve reliability? Read this article on testing of Javascript codes.
<br />
<a href="http://www.codeproject.com/KB/scripting/UnitJS.aspx" target="_blank">http://www.codeproject.com/KB/scripting/UnitJS.aspx</a>]]></description>
			<category>Client Side Development</category>
			<pubDate>Tue, 18 Dec 2007 08:17:17 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/testing-of-javascript-codes-t72.htm#88</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/testing-of-javascript-codes-t72.htm</guid>
		</item>
		<item>
			<title>Difference between the XHTML Elements: span and div</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/difference-between-the-xhtml-elements-span-and-div-t54.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>The &lt;span&gt; and &lt;div&gt; tags are very useful when dealing with Cascading Style Sheets. People tend to use the two tags in a similar fashion, but they serve different purposes.

&lt;div&gt;



The &lt;div&gt; tag defines logical divisions (defined) in your Web page. It acts a lot like a paragraph tag, but it divides the page up into larger sections.



&lt;div&gt; also gives you the chance to define the style of whole sections of HTML. You could define a section of your page as a  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 13 Dec 2007 04:35:00 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/difference-between-the-xhtml-elements-span-and-div-t54.htm#67</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/difference-between-the-xhtml-elements-span-and-div-t54.htm</guid>
		</item>
		<item>
			<title>How do I… Warn a user before they submit a form or follow a</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/how-do-i-warn-a-user-before-they-submit-a-form-or-follow-a-t40.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Ever had an instance in your application development career where it would be nice to be able to warn a user that they are about to perform some action on a Web page, and give them the chance to cancel that action before it happens?



For example, say the user is about to click a link that will delete a record — you want to warn them and allow them to cancel the action if they decide the record should remain. Another example is when a user clicks a link that is going to take them to another  ...</description>
			<category>Client Side Development</category>
			<pubDate>Tue, 11 Dec 2007 13:09:09 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/how-do-i-warn-a-user-before-they-submit-a-form-or-follow-a-t40.htm#51</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/how-do-i-warn-a-user-before-they-submit-a-form-or-follow-a-t40.htm</guid>
		</item>
		<item>
			<title>How do I… Create a customized JavaScript jump menu in Dreamw</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/how-do-i-create-a-customized-javascript-jump-menu-in-dreamw-t38.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description><![CDATA[click the below link 
<br />

<br />
<a href="http://blogs.techrepublic.com.com/howdoi/?p=174" target="_blank"><font color="red"><u>More Info</u></font></a>
<br />

<br />

<br />
Regards
<br />
<font color="orange">Sakthi</font>]]></description>
			<category>Client Side Development</category>
			<pubDate>Tue, 11 Dec 2007 13:02:08 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/how-do-i-create-a-customized-javascript-jump-menu-in-dreamw-t38.htm#49</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/how-do-i-create-a-customized-javascript-jump-menu-in-dreamw-t38.htm</guid>
		</item>
		<item>
			<title>Notes on Mozilla DOCTYPE Sniffing and Parser and Layout Mode</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/notes-on-mozilla-doctype-sniffing-and-parser-and-layout-mode-t15.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Introduction



Because existing content on the web is not standards-compliant or would appear in unintended ways on a standards-compliant browser, Mozilla handles some content in a backwards compatible way and some content according to standard. Two separate modes are set: the parser DTD mode and the layout quirks mode.

The Parser DTD



The parser has modules called DTDs that are designed to represent something similar to an SGML DTD. The DTD determines when to open and close containers  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 06 Dec 2007 08:54:24 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/notes-on-mozilla-doctype-sniffing-and-parser-and-layout-mode-t15.htm#20</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/notes-on-mozilla-doctype-sniffing-and-parser-and-layout-mode-t15.htm</guid>
		</item>
		<item>
			<title>Why Use Web Standards?</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/why-use-web-standards-t14.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>A brief explanation of the reasons and need for a set of governing standards.



For those that are becoming aware of, but are somewhat confused by, the references they see to &quot;Web Standards&quot; and &quot;Standards compliance&quot;



As a brief potted history of the situation that led to the necessity for a governing set of standards, we need to look to the history of the browser and of coding.

It helps to understand that HTML/XHTML are essentially a scripting language and as such  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 06 Dec 2007 08:52:36 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/why-use-web-standards-t14.htm#19</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/why-use-web-standards-t14.htm</guid>
		</item>
		<item>
			<title>Various DOCTYPE questions</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/various-doctype-questions-t13.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>Hi all,



I'm somewhat of a newbie to webscripting. I've made a couple of websites in

the past with WYSIWYG software, but now I'm much more interested in manual

scripting. I have some questions about DOCTYPE:



1. Is a doctype statement *required*, or is it just &quot;strongly suggested&quot;? I

would probably be using a Transitional doctype.



2. I understand that in a frameset I must use a Framset Doctype ststement,

but what about the individual pages within the frameset? Must  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 06 Dec 2007 08:46:22 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/various-doctype-questions-t13.htm#18</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/various-doctype-questions-t13.htm</guid>
		</item>
		<item>
			<title>Various Doctype Declarations</title>
			<link>http://techportal.forumotion.com/client-side-development-f4/various-doctype-declarations-t12.htm</link>
			<dc:creator>sakthi</dc:creator>
			<description>XHTML Strict 1.0



&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;



XHTML Transitional 1.0



&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;



XHTML Frameset 1.0



&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Frameset//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&quot;&gt;



HTML  ...</description>
			<category>Client Side Development</category>
			<pubDate>Thu, 06 Dec 2007 08:45:26 GMT</pubDate>
			<comments>http://techportal.forumotion.com/client-side-development-f4/various-doctype-declarations-t12.htm#17</comments>
			<guid>http://techportal.forumotion.com/client-side-development-f4/various-doctype-declarations-t12.htm</guid>
		</item>
	</channel>
</rss>