
<?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>Official Sothink Blog &#187; JavaScript</title>
	<atom:link href="http://www.sothink.com/blog/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sothink.com/blog</link>
	<description>Tech Talk, Suggestions, Coffee House, Member Blogs…</description>
	<lastBuildDate>Tue, 17 Jan 2012 06:38:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cross-Browser HTML5 Placeholder Text</title>
		<link>http://www.sothink.com/blog/cross-browser-html5-placeholder-text/</link>
		<comments>http://www.sothink.com/blog/cross-browser-html5-placeholder-text/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 07:32:43 +0000</pubDate>
		<dc:creator>Annie</dc:creator>
				<category><![CDATA[Other Tools]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[html5 placeholder]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web form]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=3619</guid>
		<description><![CDATA[One of the nice enhancement in HTML5 web form is  being able to add placeholder text to input fields. Placeholder attribute allows  you to display text in a form input when it is empty and when it is not focused  (it clears the field on focus). This is a nifty feature, but [...]]]></description>
			<content:encoded><![CDATA[<p>One of the nice enhancement in HTML5 web form is  being able to add placeholder text to input fields. Placeholder attribute allows  you to display text in a form input when it is empty and when it is not focused  (it clears the field on focus). This is a nifty feature, but it is not supported  by all browsers yet. This tutorial will show you how to use Modernizr to detect  if placeholder is supported, or else use jQuery to display the fallback  placeholder text dynamically.</p>
<p><a href="http://webdesignerwall.com/demo/html5-placeholder-text">Demo <em>HTML5  Placeholder</em></a></p>
<p><a href="http://webdesignerwall.com/file/html5-placeholder.zip">Download <em>Demo  Zip</em></a></p>
<h3>Old School Javascript Way</h3>
<p>Before we had the placeholder attribute, we relied  on Javascript to fake the placeholder text. Below is an example. The text is  inserted in the value attribute. On focus, it checks if the value is &#8220;search&#8221;  and returns empty to clear the field. If the value is empty, it returns  &#8220;search.&#8221; As you can see, this way is not an efficient way because each field  has to be checked.<span id="more-3619"></span></p>
<pre><code>&lt;input type="text" value="Search" onfocus="if (this.value == 'Search') {this.value = '';}"
onblur="if (this.value == '') {this.value = 'Search';}"&gt;</code></pre>
<h3>jQuery Placeholder Text (<a href="http://webdesignerwall.com/demo/html5-placeholder-text">Demo</a>)</h3>
<p>Now with HTML5 placeholder, it is more semantic to  use placeholder than value attribute. However, placeholder text is not supported  by all browsers. To make it cross-browser, <a href="http://www.modernizr.com/">Modernizr</a> and <a href="http://jquery.com/">jQuery</a> come in handy here.</p>
<p>Modernizr is used here to check if placeholder is  supported. If placeholder is not supported, the jQuery code will run. It finds  all elements with placeholder attribute and stores in a variable. It then  compares the input value with the placeholder attribute. If the input value is  empty, it will display the placeholder text and add a &#8220;placeholder&#8221; class to the  input field. View <a href="http://webdesignerwall.com/demo/html5-placeholder-text">Demo</a>.</p>
<p>To use this on your site, download a copy of  Modernizr and jQuery and paste the following code any where in your html page  (be sure the jquery.js and modernizr.js file is in correct path).</p>
<pre><code>&lt;script src="jquery.js"&gt;&lt;/script&gt;
&lt;script src="modernizr.js"&gt;&lt;/script&gt;

$(document).ready(function(){

if(!Modernizr.input.placeholder){

	$('[placeholder]').focus(function() {
	  var input = $(this);
	  if (input.val() == input.attr('placeholder')) {
		input.val('');
		input.removeClass('placeholder');
	  }
	}).blur(function() {
	  var input = $(this);
	  if (input.val() == '' || input.val() == input.attr('placeholder')) {
		input.addClass('placeholder');
		input.val(input.attr('placeholder'));
	  }
	}).blur();
	$('[placeholder]').parents('form').submit(function() {
	  $(this).find('[placeholder]').each(function() {
		var input = $(this);
		if (input.val() == input.attr('placeholder')) {
		  input.val('');
		}
	  })
	});

}

&lt;/script&gt;
</code></pre>
<h3>Remove Webkit Search Input Styles</h3>
<p>Webkit browsers add extra styling to the search  input field. To remove them, add the following CSS code:</p>
<pre><code>input[type=search] {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}</code></pre>
<p><img src="http://webdesignerwall.com/wp-content/uploads/2011/03/webkit-search-input.png" alt="webkit search input" /></p>
<h3>Credit</h3>
<p>The jQuery code is found at <a href="http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html">Nico Hagenburger</a>.</p>
<p>From: <a href="http://webdesignerwall.com/tutorials/cross-browser-html5-placeholder-text">http://webdesignerwall.com/tutorials/cross-browser-html5-placeholder-text</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/cross-browser-html5-placeholder-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sothink Menu Families work well with Microsoft IE 8 RC1</title>
		<link>http://www.sothink.com/blog/sothink-menu-families-work-well-with-microsoft-ie-8-rc1/</link>
		<comments>http://www.sothink.com/blog/sothink-menu-families-work-well-with-microsoft-ie-8-rc1/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 05:27:23 +0000</pubDate>
		<dc:creator>Gracie</dc:creator>
				<category><![CDATA[JavaScript Software]]></category>
		<category><![CDATA[JavaScript Web Scroller]]></category>
		<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[Sothink Tree Menu]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[IE 8]]></category>
		<category><![CDATA[internet explorer 8]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[menu tree]]></category>
		<category><![CDATA[release candidate]]></category>
		<category><![CDATA[Tree Menu]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[web scroller]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=2010</guid>
		<description><![CDATA[Let your navigation DHTML menus, JavaScript menu trees s or even image scrollers compatible with Microsoft IE 8 RC 1 (short for Release Candidate 1) is not a big case. Recently Sothink has released several new updates including Sothink DHTML Menu 9.1, Sothink Tree Menu 2.8 and Sothink JavaScript Web Scroller 2.1, all of which [...]]]></description>
			<content:encoded><![CDATA[<p>Let your navigation DHTML menus, JavaScript menu trees s or even image scrollers <strong>compatible with Microsoft IE 8 RC 1</strong> (short for Release Candidate 1) is not a big case. Recently Sothink has released several new updates including <strong><a href="http://www.sothink.com/product/dhtmlmenu/download.htm">Sothink DHTML Menu 9.1</a></strong>, <strong><a href="http://www.sothink.com/product/treemenu/download.htm">Sothink Tree Menu 2.8</a></strong> and <strong><a href="http://www.sothink.com/product/javascriptwebscroller/download.htm">Sothink JavaScript Web Scroller 2.1</a></strong>, all of which supports IE 8 RC 1. All registered users of three products can enjoy free upgrade to the latest versions. It is really good news for most Web designers, isn’t it?<br />
<span id="more-2010"></span><br />
As we all know that Microsoft is readying its final release of the browser Internet Explorer 8. So is the Sothink Menu-making Family, which is also readying to support its DHTML Menu, Tree Menu, JavaScript Web Scroller full compatible with IE 8 RC 1 and even the final release in future.</p>
<p>It is informed that Windows Internet Explorer 8 provides users innovative new features that make browsing faster, easier, and safer than ever. Currently the Release Candidate 1 of IE 8 is offered to be evaluated by users while it undergoes final testing. It’s no doubt that the final release of IE 8 will spread over the Internet. So ensuing your navigation menus (either DHTML menus or Javascript menus) are compatible with IE 8 becomes quite important to each Webmaster or Web designer. That’s why the minor updates of Sothink DHTML Menu, Tree Menu and JavaScript Web Scroller are decided to published in order to add the compatibility of IE 8 RC1.</p>
<p>Wanna have a try immediately? Here goes the download links of the latest versions of three products:<br />
<a href="http://www.sothink.com/product/dhtmlmenu/index.htm"><img src="http://www.sothink.com/blog/wp-content/uploads/2009/03/dhtmlmenu_59.png" alt="DHTML Menu Icon" title="dhtmlmenu_59" width="59" height="87" class="alignleft size-full wp-image-2011" /></a><br />
<a href="http://www2.sothink.com/download/sdmenu.zip">Install DHTML Menu 9.1 now!<br />
Create drop down menus visible in IE 8 RC 1!</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.sothink.com/product/treemenu/index.htm"><img src="http://www.sothink.com/blog/wp-content/uploads/2009/03/treemenu_59.png" alt="tree menu icon" title="treemenu_59" width="59" height="87" class="alignleft size-full wp-image-2012" /></a><br />
<a href="http://www2.sothink.com/download/stmenu.zip">Install Tree Menu 2.8 now!<br />
Build JavaScript tree menus compatible with IE 8 RC 1!</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.sothink.com/product/javascriptwebscroller/index.htm"><img src="http://www.sothink.com/blog/wp-content/uploads/2009/03/sothink-image-gallery-scrol.png" alt="image scroller" title="sothink-image-gallery-scrol" width="59" height="87" class="alignleft size-full wp-image-2013" /></a><br />
<a href="http://www2.sothink.com/download/jwscroller.zip">Install JavaScript Web Scroller 2.1 now! <br />
Let your image slideshows or news scrollers work well with IE 8 RC 1!</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once upgrade to the latest version, just publish the existing menus or image scrollers from the program, replace all JS files or codes used on your Web site with the new files, and then users can experience the compatibility issues with websites in IE 8 RC 1 while browsing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/sothink-menu-families-work-well-with-microsoft-ie-8-rc1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preview Setup: optimize the menu design process!</title>
		<link>http://www.sothink.com/blog/preview-setup-optimize-the-menu-design-process/</link>
		<comments>http://www.sothink.com/blog/preview-setup-optimize-the-menu-design-process/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 06:20:28 +0000</pubDate>
		<dc:creator>chenxixi</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Preview Setup]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=1819</guid>
		<description><![CDATA[Preview Setup is a useful setting in Sothink DHTML Menu, which can help users to better design and preview the menu in time. This setup dialog is quite useful in menu creating process, especially for those who want menu to suit the layout and background color of the web page.
Enter &#8220;Preview &#62; Preview Setup&#8221; to [...]]]></description>
			<content:encoded><![CDATA[<p>Preview Setup is a useful setting in Sothink DHTML Menu, which can help users to better design and preview the menu in time. This setup dialog is quite useful in menu creating process, especially for those who want menu to suit the layout and background color of the web page.</p>
<p>Enter &#8220;Preview &gt; Preview Setup&#8221; to configure the preview setting.</p>
<p><img class="alignnone size-full wp-image-1820" title="Preview Setup helps web designers to design and preview the menu in time better. " src="http://www.sothink.com/blog/wp-content/uploads/2009/01/previewsetup.gif" alt="previewsetup" width="428" height="455" /></p>
<p><span id="more-1819"></span></p>
<p>Web designers can set Background color and Page margin to configure the menu so it can suit the HTML web page better.</p>
<ul>
<li>Background color<br />
Set the background color for preview window. You can set the background color the same with your web page, so you will get the matchable menu color and style.<br />
<img class="alignnone size-full wp-image-1832" title="Set the background color for preview window." src="http://www.sothink.com/blog/wp-content/uploads/2009/01/sss.gif" alt="Set the background color for preview window." width="300" height="208" /></li>
<li>Page margin<br />
Input value to set menu&#8217;s left and right margin in the preview window.<br />
<img class="alignnone size-full wp-image-1833" title="Input value to set menu’s left and right margin in the preview window." src="http://www.sothink.com/blog/wp-content/uploads/2009/01/sss4.gif" alt="sss4" width="350" height="199" /></li>
</ul>
<p>After the menu creating, you can preview the menu in a certain HTML page and preview its effect! This function is for those advanced users of Sothink DHTML Menu.</p>
<ul>
<li>Preview in Pages<br />
To preview the menu in an HTML page, you can set this option to get it.<br />
Choose the button &#8220;Add&#8221; and pick up the page which the menu is inserted into, put the cursor in the place where the menu is shown in the page, so the menu can locate in the proper position in the HTML page. You can choose the button &#8220;Edit&#8221; to change the position of the cursor, so does the menu&#8217;s position.<br />
<img class="alignnone size-full wp-image-1834" title="Preview the menu in a certain HTML page." src="http://www.sothink.com/blog/wp-content/uploads/2009/01/ssss.gif" alt="Preview the menu in a certain HTML page." width="442" height="326" /></li>
</ul>
<p>There&#8217;re some other options；</p>
<ul>
<li>Auto-refresh preview window:<br />
Checking this option, the program will refresh the menu result in preview window automatically when you make any modification.</li>
<li>Prompt to refresh if the menu is modified:<br />
This option is available with the option &#8220;Auto-refresh preview window&#8221; unchecked. Checking this option, the program will prompt you to refresh the menu result by clicking the prompt.</li>
<li>Display the HTML page in program&#8217;s preview window<br />
Checking this option, you can see the exact position of the DHTML menu within built-in preview window of the program.</li>
<li>Display the HTML page in external preview window<br />
Checking this option, you can preview the exact position of DHTML menu just in external preview window.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/preview-setup-optimize-the-menu-design-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Perfect the Layout of Your DHTML Menu?</title>
		<link>http://www.sothink.com/blog/how-to-perfect-the-layout-of-your-dhtml-menu/</link>
		<comments>http://www.sothink.com/blog/how-to-perfect-the-layout-of-your-dhtml-menu/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 07:29:19 +0000</pubDate>
		<dc:creator>chenxixi</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[round corner menu]]></category>
		<category><![CDATA[rounded corner menu]]></category>
		<category><![CDATA[Ruler]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=1774</guid>
		<description><![CDATA[After you create a JavaScript Web Menu by Sothink DHTML Menu, you may want to know its exact size, including width &#38; height, and then modify it. Sometimes you may also want to find out the X position and Y position of the menu after the menu is published to the webpage. Here comes an easy [...]]]></description>
			<content:encoded><![CDATA[<p>After you create a JavaScript Web Menu by Sothink DHTML Menu, you may want to know its exact size, including width &amp; height, and then modify it. Sometimes you may also want to find out the X position and Y position of the menu after the menu is published to the webpage. Here comes an easy built-in tool for you to make it &#8212; Ruler!</p>
<p>This function can layout your menu perfectly, which makes the whole menu and each menu item get the precise size. So it is convenient for you to configure the background image of menu item; the position of menu and its popup items can also be set separately as well.</p>
<p>You can also set the &#8220;Page Margin&#8221; in Preview Setup to position the menu in your webpage more precisely.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/index.htm"><img class="alignnone size-full wp-image-1779" title="The current coordinates of the mouse show in the right bottom of the state bar. " src="http://www.sothink.com/blog/wp-content/uploads/2009/01/ss1.gif" alt="Ruler helps to perfect the layout of the menu" width="562" height="366" /></a><br />
<span style="color: #ff0000;">The current coordinates of the mouse show as X 132 and Y 2 in the right bottom of the state bar. </span></p>
<p><span id="more-1774"></span></p>
<p><strong>F.A.Q</strong>:</p>
<p><strong>1. How to show ruler?</strong><br />
&#8211; There are two ways to show ruler, one is to click &#8220;View &gt; Ruler&#8221; on the menu bar; the other is to press shortcut key Ctrl+R.</p>
<p><strong>2. Can I change the measurement units?</strong><br />
&#8211; Yes. Just right-click anywhere within the ruler and the ruler settings will popup. The available units are pixel, inch, or centimeter. And the default measurement unit is pixel.</p>
<p><strong>3. How to change the coordinate origin (in order to calculate the size value of the whole menu and each menu item)</strong><br />
&#8211; You can change coordinate origin to help you calculate the size value easily. Just press down the mouse in intersection area of horizontal ruler and vertical ruler, and then drag the crossing down to the position where you want the coordinate&#8217;s origin locates. When dragging the crossing, a horizontal and a vertical line will appear to guide you. The new coordinate origin is the intersection of horizontal guide and vertical guide line.</p>
<p><span style="color: #ff0000;">Intersection area<br />
<a href="http://www.sothink.com/product/dhtmlmenu/index.htm"><img class="alignnone size-full wp-image-1784" title="You can change the coordinate origin to calculate the size value of the whole menu and each menu item" src="http://www.sothink.com/blog/wp-content/uploads/2009/01/se2.gif" alt="Change the coordinate origin?" width="432" height="382" /></a></span></p>
<p>Take above image for example: new 0 in the top ruler moves 300 pixels right; and new 0 in the left ruler moves 200 pixels down, the crossing is the new coordinate origin. To restore the ruler coordinate origin, you can right-click anywhere within the ruler and choose &#8220;Reset&#8221;.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_blank">Click here for more info about Sothink DHTML Menu&gt;&gt;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/how-to-perfect-the-layout-of-your-dhtml-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Rounded Corner Menu?</title>
		<link>http://www.sothink.com/blog/how-to-create-a-rounded-corner-menu/</link>
		<comments>http://www.sothink.com/blog/how-to-create-a-rounded-corner-menu/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 01:13:19 +0000</pubDate>
		<dc:creator>chenxixi</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[round corner menu]]></category>
		<category><![CDATA[rounded corner menu]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=1613</guid>
		<description><![CDATA[One of our readers recently asked about how to create a rounded corner style menu. Rounded corner menu looks nice. Well, here is a quick way -using Sothink DHTML Menu 9.0, a professional DHTML Menu maker. This program supports setting menu item with rounded corner, so we can create a menu with rounded corner style.
Below [...]]]></description>
			<content:encoded><![CDATA[<p>One of our readers recently asked about how to create a rounded corner style menu. Rounded corner menu looks nice. Well, here is a quick way -using Sothink DHTML Menu 9.0, a professional DHTML Menu maker. This program supports setting menu item with rounded corner, so we can create a menu with rounded corner style.</p>
<p>Below is a sample of rounded corner menu, which is produced by Sothink DHTML Menu. It totally imitates the old menu style of Amazon.com.</p>
<p><a href="http://www.sothink.com/product/dhtmlmenu/samples/index.htm"><img class="alignnone size-full wp-image-1622" title="Sothink DHTML Menu Sample" src="http://www.sothink.com/blog/wp-content/uploads/2008/12/am.gif" alt="am" width="553" height="282" /></a></p>
<p>To create a rounded menu, we should choose &#8220;Menu Item &#8211; Background&#8221; in the tasks panel. In the property panel, you can set the background of the menu item as rounded corner image in the Background Library.</p>
<p><span id="more-1613"></span></p>
<p><img class="alignnone size-full wp-image-1616" title="Menu Item - Background" src="http://www.sothink.com/blog/wp-content/uploads/2008/12/snap3.gif" alt="snap3" width="546" height="174" /></p>
<p><img class="alignnone size-full wp-image-1618" title="background Library" src="http://www.sothink.com/blog/wp-content/uploads/2008/12/snap4.gif" alt="snap4" width="421" height="215" /></p>
<p>You can also custom the rounded corner image in the Custom dialog. The custom image is made up of three graphics, which are the left corner, the middle graphic and the right corner. You can define each as you like.</p>
<p><img class="alignnone size-full wp-image-1619" title="Custom Image" src="http://www.sothink.com/blog/wp-content/uploads/2008/12/snap6.gif" alt="snap6" width="496" height="265" /></p>
<p>Following the steps above, you can create a cool menu with rounded menu style.<br />
Design your special rounded corner menu to welcome this Christmas day in 2008!<br />
Download Sothink DHTML Menu and you can use it for FREE in 30 days!</p>
<p><a href="http://www2.sothink.com/download/sdmenu.zip" target="_blank">Download For Free</a> | <a href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_blank">More Info</a> | <a href="http://www.sothink.com/product/dhtmlmenu/samples/index.htm" target="_self">Samples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/how-to-create-a-rounded-corner-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Tab Menu by Sothink DHTML Menu?</title>
		<link>http://www.sothink.com/blog/how-to-create-a-tab-menu-by-sothink-dhtml-menu/</link>
		<comments>http://www.sothink.com/blog/how-to-create-a-tab-menu-by-sothink-dhtml-menu/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 02:11:35 +0000</pubDate>
		<dc:creator>chenxixi</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=960</guid>
		<description><![CDATA[
What is tab menu? Well, tab menu is a menu type that displays main menu items as tabs. The tab menu created by Sothink DHTML Menu is a standard compliant, 2 level tab menu. Sub menu items are displayed on a line below when you move your mouse over or clicking a main menu item. Now [...]]]></description>
			<content:encoded><![CDATA[<p style="TEXT-ALIGN: left"><a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/snap1.gif"></a><a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/snap11.gif"></a><a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/snap2.gif"><img class="alignleft size-full wp-image-998" title="snap2" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/snap2.gif" alt="" width="346" height="52" /></a><br />
What is tab menu? Well, tab menu is a menu type that displays main menu items as tabs. The tab menu created by Sothink DHTML Menu is a standard compliant, 2 level tab menu. Sub menu items are displayed on a line below when you move your mouse over or clicking a main menu item. Now with Sothink DHTML Menu, you can create tab menus in minutes, just like Amazon&#8217;s menu tabs with their nice rounded corners!</p>
<p style="TEXT-ALIGN: left"><a href="http://www.sothink.com/tutorials/viewtopic.php?t=308" target="_blank"><strong>Visual Tutorial: How to Create a Tab Menu by Sothink DHTML Menu&gt;&gt;</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/how-to-create-a-tab-menu-by-sothink-dhtml-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sothink DHTML Menu 9.0 is released!</title>
		<link>http://www.sothink.com/blog/sothink-dhtml-menu-90-is-released/</link>
		<comments>http://www.sothink.com/blog/sothink-dhtml-menu-90-is-released/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 06:24:54 +0000</pubDate>
		<dc:creator>chenxixi</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[tab menu]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=665</guid>
		<description><![CDATA[ 
Sothink DHTML Menu 9
File size: 5.94 MB
Build number: 81111
Release date: 12th November, 2008
Donwload Now &#124; Samples &#124; More Info
 
For those who are longing for the new version of Sothink DHTML Menu for a long time, here is a GOOD NEWS:  Sothink DHTML Menu 9 is finally released today! Let&#8217;s take a look at some of its new features:

Tab [...]]]></description>
			<content:encoded><![CDATA[<p> <a title="Sothink DHTML Menu" href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_self"><img class="size-full wp-image-712   alignleft" title="sss" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/sss.gif" alt="" width="112" height="149" /></a></p>
<p><strong>Sothink DHTML Menu 9</strong></p>
<p>File size: 5.94 MB<br />
Build number: 81111<br />
Release date: 12th November, 2008</p>
<p><a href="http://www2.sothink.com/download/sdmenu.zip">Donwload Now</a> | <a href="http://www.sothink.com/product/dhtmlmenu/samples/index.htm" target="_self">Samples</a> | <a href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_self">More Info</a></p>
<p> </p>
<p>For those who are longing for the new version of Sothink DHTML Menu for a long time, here is a GOOD NEWS:  Sothink DHTML Menu 9 is finally released today! Let&#8217;s take a look at some of its new features:</p>
<ul>
<li><span class="bold">Tab Menu</span> is supported. It is a menu type which displays main menu items as tabs. The sub menu items are displayed on a line below when moving the mouse over or clicking a main menu item <a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/a.gif"></a></li>
<p style="text-align: center;"><img class="alignnone size-full wp-image-694" title="a" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/a.gif" alt="" width="448" height="54" /></p>
<li>Support setting<span class="bold"> background with rounded corner</span>. Users can choose background images in Background Library or custom the background images as they like</li>
</ul>
<p align="center"><a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/b.gif"><img class="alignnone size-full wp-image-695" title="b" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/b.gif" alt="" width="416" height="196" /></a></p>
<p style="text-align: left;"><span id="more-665"></span></p>
<ul>
<li>Add new <strong class="bold">templates</strong> and modify the present style in the built-in template</li>
<li><span class="bold">Sort the images by the use frequency</span> in all image libraries and the Style panel of Menu Item</li>
<li><span class="bold">Simplify the surround function</span> by dividing &#8220;Popup Menu &gt; Surround&#8221; into normal panel and advanced panel. Users can adjust the color, tint &amp; brightness to edit the surround image or choose corners and edges separately.
<p align="center"><img class="alignnone size-full wp-image-696" title="c" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/c.gif" alt="" width="338" height="143" /></p>
</li>
<li>Modifing the present styles of menu item</li>
</ul>
<p style="text-align: center;"><img class="alignnone size-full wp-image-696" title="c" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/c.gif" alt="" width="338" height="143" /></p>
<p style="text-align: left;"><a href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_self">More new functions and features&gt;&gt;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/sothink-dhtml-menu-90-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial&#8211;How to Create a Professional DHTML Menu without Coding</title>
		<link>http://www.sothink.com/blog/how-to-create-a-professional-dhtml-menu-without-coding/</link>
		<comments>http://www.sothink.com/blog/how-to-create-a-professional-dhtml-menu-without-coding/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 07:26:13 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Free Resource]]></category>
		<category><![CDATA[Other Tools]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[make dhtml menu]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=268</guid>
		<description><![CDATA[
No coding acknowledge, no JavaScript experience, do you still want to create your own DHTML menu? It is very simple to get drop down menu if you have Sothink DHTML Menu. The above tutorial is show you how to do to build your JavaScript menu. 
Know about Sothink DHTML Menu. It is the most popular JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/dHcyHey7z4g&amp;hl=zh_TW&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/dHcyHey7z4g&amp;hl=zh_TW&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p style="background: white;">No coding acknowledge, no JavaScript experience, do you still want to create your own <strong>DHTML menu</strong>? It is very simple to get <strong>drop down menu</strong> if you have <strong>Sothink DHTML Menu</strong>. The above tutorial is show you how to do to build your <strong>JavaScript menu</strong>.<span style="font-size: 10.5pt; color: #000000; line-height: 135%; font-family: Arial;"> </span></p>
<p style="background: white;"><a href="http://www.sothink.com/blog/wp-content/uploads/2008/11/box-dmenu.gif"><img class="alignleft size-medium wp-image-600" title="Sothink DHTML Menu" src="http://www.sothink.com/blog/wp-content/uploads/2008/11/box-dmenu.gif" alt="" width="80" height="158" /></a>Know about <a href="http://www.sothink.com/product/dhtmlmenu/index.htm" target="_blank">Sothink DHTML Menu</a>. It is the most popular <strong>JavaScript drop down menu maker</strong> currently found on the web. It covers all your <strong>DHTML web menu</strong> system needs and more. With our brand-new intuitive user interface, it easily creates fully featured <strong>cross-browser drop down menus</strong> in a visual edit mode. You can generate stylish DHTML menus in minutes with our frequently updated templates. Resource Folder settings and publishing guide you to add a <strong>drop down menu</strong> to your pages in a fast and easy way without any hand coding, working both locally and on the web. Free Dreamweaver, FrontPage, Expression Web and GoLive add-ins help you quickly design your menu and integrate it with your existing web site. <a href="http://www.sothink.com/product/dhtmlmenu/screenshot.htm" target="_blank">Sothink DHTML Menu Builder</a> also generates search-engine-friendly <strong>drop down web menus</strong>, which therefore can be properly indexed by search engines, such as Google.</p>
<p style="background: white;">All licenses allow you to <strong>create menus</strong> for unlimited web sites.</p>
<p style="background: white;"><a href="http://www.sothink.com/product/dhtmlmenu/download.htm" target="_blank">Download and try Sothink DHTML Menu &gt;&gt;</a></p>
<p style="background: white;"><a href="http://www.sothink.com/purchase/shoppingcart/cart_add.php?ProductID=89" target="_blank">Order the lite version of Sothink DHTML Menu &gt;&gt;</a></p>
<p style="background: white;"><a href="http://www.sothink.com/purchase/shoppingcart/cart_add.php?ProductID=1" target="_blank">Order the professional version of Sothink DHTML Menu &gt;&gt;</a></p>
<p style="background: white;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/how-to-create-a-professional-dhtml-menu-without-coding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What’s New in Sothink DHTML Menu 8.6?</title>
		<link>http://www.sothink.com/blog/what%e2%80%99s-new-in-sothink-dhtml-menu-86/</link>
		<comments>http://www.sothink.com/blog/what%e2%80%99s-new-in-sothink-dhtml-menu-86/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 08:13:37 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Sothink DHTML Menu]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[DHTML Menu]]></category>
		<category><![CDATA[DHTML Menu Builder]]></category>
		<category><![CDATA[Dhtml Menu Maker]]></category>
		<category><![CDATA[Down]]></category>
		<category><![CDATA[Drop]]></category>
		<category><![CDATA[Drop Down Menu]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Maker]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://www.sothink.com/blog/?p=250</guid>
		<description><![CDATA[
Sothink dhtml menu was updated to the new version 8.6 last month, have you tried it yet?
For the users who have aready tried or bought it ,you might exactly benefit from the convenience that the optimization brought to you, but for some users-to-be who do know not so much about it , here I will [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&amp;gt;  Normal 0    7.8 磅 0 2  false false false  EN-US ZH-CN X-NONE                                  &amp;lt;![endif]--><!--[if gte mso 9]&amp;gt;                                                                                                                                            &amp;lt;![endif]--></p>
<p class="MsoNormal" align="left"><strong><span style="black;">Sothink dhtml menu</span></strong><span style="black;"> was updated to the new version 8.6 last month, have you tried it yet?</span></p>
<p class="MsoNormal" align="left"><span style="black;">For the users who have aready tried or bought it ,you might exactly benefit from the convenience that the optimization brought to you, but for some users-to-be who do know not so much about it , here I will give you a brief introduction.</span></p>
<p class="MsoNormal" align="left">
<p class="MsoNormal" align="left"><span style="black;"> </span></p>
<p class="MsoNormal" align="left"><strong><span style="black;">Optimization</span></strong></p>
<p class="MsoNormal" align="left"><span style="black;"> </span></p>
<ul>
<li><span style="black;"><span><span style="none;"> </span></span></span><!--[endif]--><span style="black;"><span style="none;">Brand-new interface</span> has improved the <strong>fashionable skin</strong>, the reasonable layout and <strong>handy editing</strong> </span></li>
<li><!--[if !supportLists]--><span style="black;"><span><span style="none;"> </span></span></span><!--[endif]--><span style="black;">Full Edit Mode enables to edit and preview menu in the preview window directly; </span></li>
<li><!--[if !supportLists]--><span style="black;"><span><span style="none;"> </span></span></span><!--[endif]--><span style="black;">Set Resource Folder for resources files to make the same menu display exactly in multi-page of different folders; and preview the menu locally or on the web </span></li>
<li><!--[if !supportLists]--><span style="black;">Simplifies Publishing to insert the menu into the page easier;</span><span> Add new <strong>templates</strong>, modify the present style in the built-in templates and re-arrange the existing template</span><span style="black;">s</span></li>
</ul>
<p class="MsoNormal" align="left"><span style="black;"> </span></p>
<p class="MsoNormal" align="left"><strong><span style="black;">More New Features</span></strong></p>
<p class="MsoNormal" align="left">
<ul>
<li><strong></strong><span class="bold"><span>custom resources</span></span><span> in image library.</span></li>
<li><span class="bold"><span>Keyboard Navigation</span></span></li>
<li><span class="bold"><span>Disable certain items and separators</span></span><span> function</span></li>
<li><span class="bold"><span>Multi-column Menu</span></span></li>
<li><span class="bold"><span>Copy and Paste directly</span></span></li>
<li><span>New special effect – <span class="bold">Rectangle</span></span></li>
<li><span class="bold"><span>Tips of the Day</span></span></li>
</ul>
<p class="MsoNormal" align="left"><span style="black;"> </span></p>
<p class="MsoNormal" align="left"><span style="black;">Know more at: www.sothink.com/product/dhtmlmenu/index.htm</span></p>
<p class="MsoNormal" align="left"><span style="black;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sothink.com/blog/what%e2%80%99s-new-in-sothink-dhtml-menu-86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

