<?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>HTML&#187; javascript</title>
	<atom:link href="http://htmlindex.net/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://htmlindex.net</link>
	<description>html index</description>
	<lastBuildDate>Thu, 24 May 2012 04:46:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Javascript OnFocus Help?</title>
		<link>http://htmlindex.net/textfield-form-html/javascript-onfocus-help</link>
		<comments>http://htmlindex.net/textfield-form-html/javascript-onfocus-help#comments</comments>
		<pubDate>Thu, 03 May 2012 15:00:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Textfield Form Html]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[OnFocus]]></category>

		<guid isPermaLink="false">http://htmlindex.net/textfield-form-html/javascript-onfocus-help</guid>
		<description><![CDATA[Question by : Javascript OnFocus Help? I am trying to make a function called &#8216;setage&#8217; that when you click on the &#8216;Age&#8217; TextField, it automatically computes the age from the date of birth and displays it in the textbox. I also the age to go down one if the birthdate is past June 1. For &#8230; <a href="http://htmlindex.net/textfield-form-html/javascript-onfocus-help">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Ftextfield-form-html%252Fjavascript-onfocus-help%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Javascript%20OnFocus%20Help%3F%22%20%7D);"></div>
<p><strong><i>Question by </i>: Javascript OnFocus Help?</strong><br />
I am trying to make a function called &#8216;setage&#8217; that when you click on the &#8216;Age&#8217; TextField, it automatically computes the age from the date of birth and displays it in the textbox. I also the age to go down one if the birthdate is past June 1. For some reason, it cannot display it.</p>
<p><html></p>
<p><head></p>
<p>function setage (form)<br />
{<br />
  var dob = form.birthdate.value;</p>
<p>  var mo  = dob.substr(0,2);<br />
  var day = dob.substr(3,2);<br />
  var yr  = dob.substr(6,4);</p>
<p>  var this_age  = 2011 &#8211; yr;<br />
  if (mm >= 6)<br />
  {<br />
    this_age&#8211;;<br />
  }<br />
  form.age.value = this_age;<br />
  form.submit();<br />
  return;<br />
}</p>
<p></head></p>
<p><body></p>
<form action="Test.html" method="post">
Firstname:<br />
<input type="text" name="firstname" size=15 />  <br />
Lastname:<br />
<input type="text" name="lastname" size=15 />
Gender:<br />
<input type="text" name="gender" size=1 />
Birthdate:  <br />
<input type="text" name="birthdate" size=10 />  <br />
Age:<br />
<input type="text" name="age" size=2 onfocus=setage(this.form); /></p>
<input type="submit" />
</form>
<p></body><br />
</html></p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by Ratchetr</i><br/>If you run in FireFox, click in the age box, then look in the error console (tools menu), you&#8217;ll see:<br />
Error: mm is not defined</p>
<p>You declared variable mo, but you are using mm in the if statement.</p>
<p><strong>What do you think? Answer below!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Ftextfield-form-html%2Fjavascript-onfocus-help';
  addthis_title  = 'Javascript+OnFocus+Help%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/textfield-form-html/javascript-onfocus-help"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Help' rel='tag' target='_blank'>Help</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/OnFocus' rel='tag' target='_blank'>OnFocus</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/textfield-form-html/javascript-onfocus-help/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML / JAVASCRIPT HELP. I&#8217;m a javascript beginner. Please help.?</title>
		<link>http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help</link>
		<comments>http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help#comments</comments>
		<pubDate>Tue, 06 Mar 2012 04:00:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html Multiple Text Boxes]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[please]]></category>

		<guid isPermaLink="false">http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help</guid>
		<description><![CDATA[Question by David P: html / JAVASCRIPT HELP. I&#8217;m a javascript beginner. Please help.? What I am trying to do it put in a text box and have a button. All I am trying to do right now is to do a document.write statement (or if there is something better) to actually display what I &#8230; <a href="http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhtml-multiple-text-boxes%252Fhtml-javascript-help-im-a-javascript-beginner-please-help%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22HTML%20%2F%20JAVASCRIPT%20HELP.%20I%27m%20a%20javascript%20beginner.%20Please%20help.%3F%22%20%7D);"></div>
<p><strong><i>Question by David P</i>: <a href="http://htmlindex.net" target=_self>html</a> / JAVASCRIPT HELP. I&#8217;m a javascript beginner. Please help.?</strong><br />
What I am trying to do it put in a text box and have a button. All I am trying to do right now is to do a document.write statement (or if there is something better) to actually display what I have in the box. Example:<br />
text box = &#8220;test&#8221;<br />
button = &#8220;click me&#8221;<br />
document.write = &#8220;test&#8221;</p>
<p>So I am trying to display what the text box has. I am going to them move to the same thing with multiple text boxes and do some simple math. Here is my code.</p>
<p><html><br />
<head></p>
<style type="text/javascript">
</style>
<p></head></p>
<p><body></p>
<input type="text" name="text1">
<input type="button" value="Click me when done" onClick="document.write(text1)">
</body></p>
<p></html></p>
<p>Thanks everyone.</p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by Samwise</i><br/>First, you shouldn&#8217;t combine a<br />
<style> tag with type="text/javascript", which belongs on a <script> tag.</p>
<p>Second, you should put form widgets such as<br />
<input> tags inside a<br />
<form>.</p>
<p>Third, you have a design problem. document.write() only operates on an open document, and forms widgets operate after the document (your HTML page) is fully written and closed. Most browsers will probably replace your page with a blank one so they can write your text to it.</p>
<p>Fourth, the value of the text in the text input is not the name of the widget, it's its value property. </p>
<p>Here's a snippet of code that addresses my second and fourth issues, leaving you to sort out the rest:</p>
<form name="trial">
<input type="text" name="text1">
<input type="button" value="Click me when done"<br />
 onClick="document.write(trial.text1.value)"><br />
</form>
<p>I have tested this and it works with my IE6. YA seems to be truncating one line: the value of the onClick parameter is<br />
"document.write(trial.text1.value)"</p>
<p><strong>Give your answer to this question below!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-multiple-text-boxes%2Fhtml-javascript-help-im-a-javascript-beginner-please-help';
  addthis_title  = 'HTML+%2F+JAVASCRIPT+HELP.+I%26%238217%3Bm+a+javascript+beginner.+Please+help.%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/beginner' rel='tag' target='_blank'>beginner</a>, <a class='technorati-link' href='http://technorati.com/tag/Help' rel='tag' target='_blank'>Help</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/please' rel='tag' target='_blank'>please</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/html-multiple-text-boxes/html-javascript-help-im-a-javascript-beginner-please-help/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More Reviews</title>
		<link>http://htmlindex.net/graphic-html/supercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews</link>
		<comments>http://htmlindex.net/graphic-html/supercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews#comments</comments>
		<pubDate>Sat, 25 Feb 2012 00:47:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic Html]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Supercharged]]></category>

		<guid isPermaLink="false">http://htmlindex.net/graphic-html/supercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews</guid>
		<description><![CDATA[addthis_url = 'http%3A%2F%2Fhtmlindex.net%2Fgraphic-html%2Fsupercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews'; addthis_title = 'Supercharged+JavaScript+Graphics%3A+with+HTML5+canvas%2C+jQuery%2C+and+More+Reviews'; addthis_pub = ''; Technorati Tags: Canvas, graphics, html5, javascript, Jquery, more, Reviews, Supercharged]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fgraphic-html%252Fsupercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Supercharged%20JavaScript%20Graphics%3A%20with%20HTML5%20canvas%2C%20jQuery%2C%20and%20More%20Reviews%22%20%7D);"></div>
<h3><a href="http://htmlindex.net/go/Supercharged_JavaScript_Graphics_with_HTML5_canvas_jQuery_and_More/1048/1" rel="nofollow">Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More</a></h3>
<a href="http://htmlindex.net/go/link/1048/2" rel="nofollow"><img style="float:left;margin: 0 20px 10px 0;" src="http://ecx.images-amazon.com/images/I/51LvaE1sPbL._SL160_.jpg" title="Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More Reviews" alt="51LvaE1sPbL. SL160  Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More Reviews" /></a>

With HTML5 and improved web browser support, JavaScript has become the tool of choice for creating high-performance web graphics. This faced-paced book shows you how to use JavaScript, jQuery, DHTML, and HTML5's Canvas element to create rich web applications for computers and mobile devices. By following real-world examples, experienced web developers learn fun and useful approaches to arcade games, DHTML effects, business dashboards, and other applications. This book serves complex subjects in 

<p>
<div style="float:right;"><a href="http://htmlindex.net/go/link/1048/3" rel="nofollow"><img src="http://htmlindex.net/wp-content/plugins/WPRobot3/images/buynow-big.gif" title="Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More Reviews" alt="buynow big Supercharged JavaScript Graphics: with HTML5 canvas, jQuery, and More Reviews" /></a></div>

List Price: $ 39.99

<strong>Price: $ 17.54</strong>
</p>
<iframe style="margin-top: 10px;" src="http://www.amazon.com/reviews/iframe?akid=AKIAJADIVB4TCJYAY27A&alinkCode=xm2&asin=1449393632&atag=ringtones4cel-20&exp=2012-05-25T14%3A32%3A18Z&summary=0&truncate=5000&v=2&sig=xTWdlq9FWCnty%2F6AStt873o6IO%2B5D852zBDB428r9R4%3D" width="100%" height="450px"><p>Your browser does not support iframes.</p></iframe>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fgraphic-html%2Fsupercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews';
  addthis_title  = 'Supercharged+JavaScript+Graphics%3A+with+HTML5+canvas%2C+jQuery%2C+and+More+Reviews';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/graphic-html/supercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Canvas' rel='tag' target='_blank'>Canvas</a>, <a class='technorati-link' href='http://technorati.com/tag/graphics' rel='tag' target='_blank'>graphics</a>, <a class='technorati-link' href='http://technorati.com/tag/html5' rel='tag' target='_blank'>html5</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Jquery' rel='tag' target='_blank'>Jquery</a>, <a class='technorati-link' href='http://technorati.com/tag/more' rel='tag' target='_blank'>more</a>, <a class='technorati-link' href='http://technorati.com/tag/Reviews' rel='tag' target='_blank'>Reviews</a>, <a class='technorati-link' href='http://technorati.com/tag/Supercharged' rel='tag' target='_blank'>Supercharged</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/graphic-html/supercharged-javascript-graphics-with-html5-canvas-jquery-and-more-reviews/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very simple javascript calculator using html &#8220;form&#8221;?</title>
		<link>http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form</link>
		<comments>http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form#comments</comments>
		<pubDate>Wed, 22 Feb 2012 16:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html Form]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[using]]></category>
		<category><![CDATA[Very]]></category>

		<guid isPermaLink="false">http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form</guid>
		<description><![CDATA[Question by ronaldo1287: Very simple javascript calculator using html &#8220;form&#8221;? I&#8217;m not familiar with javascript and html and I&#8217;m wondering how to create buttons and text boxes using a &#8220;form&#8221; in html. The next step is to set three text boxes and a button so that user can input two numbers on the first two &#8230; <a href="http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhtml-form%252Fvery-simple-javascript-calculator-using-html-form%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Very%20simple%20javascript%20calculator%20using%20html%20%5C%22form%5C%22%3F%22%20%7D);"></div>
<p><strong><i>Question by ronaldo1287</i>: Very simple javascript calculator using html &#8220;form&#8221;?</strong><br />
I&#8217;m not familiar with javascript and html and I&#8217;m wondering how to create buttons and text boxes using a &#8220;form&#8221; in <a href="http://htmlindex.net" target=_self>html</a>. The next step is to set three text boxes and a button so that user can input two numbers on the first two boxes and after they press the button, it&#8217;ll solve the subtraction and display the result on the third boxes. Thank you.</p>
<p>Example:<br />
Enter value for x:<textbox1><br />
Enter value for y:<textbox2><br />
Click the button to solve x-y:<button><br />
Solution:<textbox3></p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by Kevin Law</i><br/><html><br />
<body></p>
<input type="text" name="v1" size="20" value="0">-<br />
<input type="text" name="v2" size="20" value="0">
<input type="button" value="  =  " onclick="answer.value = parseInt(v1.value) - parseInt(v2.value)">
<input id="answer" value="0">
</body><br />
</html></p>
<p><strong>Know better? Leave your own answer in the comments!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-form%2Fvery-simple-javascript-calculator-using-html-form';
  addthis_title  = 'Very+simple+javascript+calculator+using+html+%26%238220%3Bform%26%238221%3B%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/calculator' rel='tag' target='_blank'>calculator</a>, <a class='technorati-link' href='http://technorati.com/tag/form' rel='tag' target='_blank'>form</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/simple' rel='tag' target='_blank'>simple</a>, <a class='technorati-link' href='http://technorati.com/tag/using' rel='tag' target='_blank'>using</a>, <a class='technorati-link' href='http://technorati.com/tag/Very' rel='tag' target='_blank'>Very</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/html-form/very-simple-javascript-calculator-using-html-form/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for Web Site Part 2</title>
		<link>http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2</link>
		<comments>http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2#comments</comments>
		<pubDate>Thu, 16 Feb 2012 16:44:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html Textarea Rich Text]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[Desire]]></category>
		<category><![CDATA[Driven Applications]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[Editor Php]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Html Editor]]></category>
		<category><![CDATA[Html Textarea]]></category>
		<category><![CDATA[Iframe]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Javascript Editor]]></category>
		<category><![CDATA[Javascript Html]]></category>
		<category><![CDATA[Javascript Text]]></category>
		<category><![CDATA[Javascript Wysiwyg]]></category>
		<category><![CDATA[Learn Javascript]]></category>
		<category><![CDATA[Part]]></category>
		<category><![CDATA[Replacement]]></category>
		<category><![CDATA[Rich]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[Text Html]]></category>
		<category><![CDATA[Textarea]]></category>
		<category><![CDATA[Wysiwyg]]></category>
		<category><![CDATA[Wysiwyg Editor]]></category>
		<category><![CDATA[Wysiwyg Html]]></category>

		<guid isPermaLink="false">http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2</guid>
		<description><![CDATA[Learn how to build a Javascript WYSIWYG Rich Text html Editor Textarea Replacement for your PHP and MySQL driven applications. In this second video we will script our wysiwyg.js file and code out all of the functions that our HTML form is ready to call. We make use of the execCommand() method in Javascript and &#8230; <a href="http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhtml-textarea-rich-text%252Fhow-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22How%20to%20Build%20a%20Javascript%20WYSIWYG%20Rich%20Text%20HTML%20Editor%20Textarea%20Replacement%20for%20Web%20Site%20Part%202%22%20%7D);"></div>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/mysAB7NAjDk?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/mysAB7NAjDk?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>Learn how to build a Javascript WYSIWYG Rich Text <a href="http://htmlindex.net" target=_self>html</a> Editor Textarea Replacement for your PHP and MySQL driven applications. In this second video we will script our wysiwyg.js file and code out all of the functions that our HTML form is ready to call. We make use of the execCommand() method in Javascript and all of its Command Identifiers to apply specific formatting we desire to our WYSIWYG editor. Our form is submit using Javascript so we can transfer the data frome our iframe into our textarea for the normal form action to work. The form can also be submit using Ajax if you prefer, then there would be no need to transfer data from the iframe into the textarea. In part 3 we discuss the PHP and MySQL side of things, security, and filtering.<br />
<strong>Video Rating: 4 / 5</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-textarea-rich-text%2Fhow-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2';
  addthis_title  = 'How+to+Build+a+Javascript+WYSIWYG+Rich+Text+HTML+Editor+Textarea+Replacement+for+Web+Site+Part+2';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Ajax' rel='tag' target='_blank'>Ajax</a>, <a class='technorati-link' href='http://technorati.com/tag/build' rel='tag' target='_blank'>build</a>, <a class='technorati-link' href='http://technorati.com/tag/Desire' rel='tag' target='_blank'>Desire</a>, <a class='technorati-link' href='http://technorati.com/tag/Driven+Applications' rel='tag' target='_blank'>Driven Applications</a>, <a class='technorati-link' href='http://technorati.com/tag/editor' rel='tag' target='_blank'>editor</a>, <a class='technorati-link' href='http://technorati.com/tag/Editor+Php' rel='tag' target='_blank'>Editor Php</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/Html+Editor' rel='tag' target='_blank'>Html Editor</a>, <a class='technorati-link' href='http://technorati.com/tag/Html+Textarea' rel='tag' target='_blank'>Html Textarea</a>, <a class='technorati-link' href='http://technorati.com/tag/Iframe' rel='tag' target='_blank'>Iframe</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Editor' rel='tag' target='_blank'>Javascript Editor</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Html' rel='tag' target='_blank'>Javascript Html</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Text' rel='tag' target='_blank'>Javascript Text</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Wysiwyg' rel='tag' target='_blank'>Javascript Wysiwyg</a>, <a class='technorati-link' href='http://technorati.com/tag/Learn+Javascript' rel='tag' target='_blank'>Learn Javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Part' rel='tag' target='_blank'>Part</a>, <a class='technorati-link' href='http://technorati.com/tag/Replacement' rel='tag' target='_blank'>Replacement</a>, <a class='technorati-link' href='http://technorati.com/tag/Rich' rel='tag' target='_blank'>Rich</a>, <a class='technorati-link' href='http://technorati.com/tag/site' rel='tag' target='_blank'>site</a>, <a class='technorati-link' href='http://technorati.com/tag/text' rel='tag' target='_blank'>text</a>, <a class='technorati-link' href='http://technorati.com/tag/Text+Html' rel='tag' target='_blank'>Text Html</a>, <a class='technorati-link' href='http://technorati.com/tag/Textarea' rel='tag' target='_blank'>Textarea</a>, <a class='technorati-link' href='http://technorati.com/tag/Wysiwyg' rel='tag' target='_blank'>Wysiwyg</a>, <a class='technorati-link' href='http://technorati.com/tag/Wysiwyg+Editor' rel='tag' target='_blank'>Wysiwyg Editor</a>, <a class='technorati-link' href='http://technorati.com/tag/Wysiwyg+Html' rel='tag' target='_blank'>Wysiwyg Html</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/html-textarea-rich-text/how-to-build-a-javascript-wysiwyg-rich-text-html-editor-textarea-replacement-for-web-site-part-2/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to debug javascript using SplineTech JavaScript Debugger</title>
		<link>http://htmlindex.net/html-debugger/how-to-debug-javascript-using-splinetech-javascript-debugger</link>
		<comments>http://htmlindex.net/html-debugger/how-to-debug-javascript-using-splinetech-javascript-debugger#comments</comments>
		<pubDate>Sun, 22 Jan 2012 16:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html Debugger]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[Debugger]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Javascript Debug]]></category>
		<category><![CDATA[Javascript Debugger]]></category>
		<category><![CDATA[SplineTech]]></category>
		<category><![CDATA[using]]></category>
		<category><![CDATA[Www Video]]></category>

		<guid isPermaLink="false">http://htmlindex.net/html-debugger/how-to-debug-javascript-using-splinetech-javascript-debugger</guid>
		<description><![CDATA[How to debug javascript using SplineTech JavaScript Debugger www.javascript-debugger.com Video Rating: 5 / 5 addthis_url = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-debugger%2Fhow-to-debug-javascript-using-splinetech-javascript-debugger'; addthis_title = 'How+to+debug+javascript+using+SplineTech+JavaScript+Debugger'; addthis_pub = ''; Technorati Tags: debug, Debugger, javascript, Javascript Debug, Javascript Debugger, SplineTech, using, Www Video]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhtml-debugger%252Fhow-to-debug-javascript-using-splinetech-javascript-debugger%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FyIV90t%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22How%20to%20debug%20javascript%20using%20SplineTech%20JavaScript%20Debugger%22%20%7D);"></div>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/sYqwv7LZ5CQ?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/sYqwv7LZ5CQ?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>
<div style="float:left;margin:5px;"><img src=http://i.ytimg.com/vi/sYqwv7LZ5CQ/default.jpg title="How to debug javascript using SplineTech JavaScript Debugger" alt="default How to debug javascript using SplineTech JavaScript Debugger" /></div>
<p>How to debug javascript using SplineTech JavaScript Debugger www.javascript-debugger.com<br />
<strong>Video Rating: 5 / 5</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-debugger%2Fhow-to-debug-javascript-using-splinetech-javascript-debugger';
  addthis_title  = 'How+to+debug+javascript+using+SplineTech+JavaScript+Debugger';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/html-debugger/how-to-debug-javascript-using-splinetech-javascript-debugger"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/debug' rel='tag' target='_blank'>debug</a>, <a class='technorati-link' href='http://technorati.com/tag/Debugger' rel='tag' target='_blank'>Debugger</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Debug' rel='tag' target='_blank'>Javascript Debug</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Debugger' rel='tag' target='_blank'>Javascript Debugger</a>, <a class='technorati-link' href='http://technorati.com/tag/SplineTech' rel='tag' target='_blank'>SplineTech</a>, <a class='technorati-link' href='http://technorati.com/tag/using' rel='tag' target='_blank'>using</a>, <a class='technorati-link' href='http://technorati.com/tag/Www+Video' rel='tag' target='_blank'>Www Video</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/html-debugger/how-to-debug-javascript-using-splinetech-javascript-debugger/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Html&#8212;- &#8220;Begin&#8221; function question?</title>
		<link>http://htmlindex.net/javascript-html/javascript-html-begin-function-question</link>
		<comments>http://htmlindex.net/javascript-html/javascript-html-begin-function-question#comments</comments>
		<pubDate>Sun, 22 Jan 2012 16:46:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript Html]]></category>
		<category><![CDATA[Arithmetic Calculations]]></category>
		<category><![CDATA[Begin]]></category>
		<category><![CDATA[Default Window]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Good Luck]]></category>
		<category><![CDATA[Heather]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Javascript Function]]></category>
		<category><![CDATA[Javascript Prompt]]></category>
		<category><![CDATA[Language Javascript]]></category>
		<category><![CDATA[Mul]]></category>
		<category><![CDATA[Multiplication]]></category>
		<category><![CDATA[N2]]></category>
		<category><![CDATA[No2]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[Question Question]]></category>
		<category><![CDATA[Script Javascript]]></category>
		<category><![CDATA[Script Language]]></category>
		<category><![CDATA[Simple Arithmetic]]></category>
		<category><![CDATA[Skeleton]]></category>
		<category><![CDATA[Subtraction]]></category>
		<category><![CDATA[Switch Type]]></category>
		<category><![CDATA[Type Case]]></category>

		<guid isPermaLink="false">http://htmlindex.net/javascript-html/javascript-html-begin-function-question</guid>
		<description><![CDATA[Question by heather: Javascript html&#8212;- &#8220;Begin&#8221; function question? I need to write a script that uses the begin function and four other worker functions to perform simple arithmetic calculations. The skeleton of the script is::]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fjavascript-html%252Fjavascript-html-begin-function-question%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FxE4NYL%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Javascript%20Html----%20%5C%22Begin%5C%22%20function%20question%3F%22%20%7D);"></div>
<p><strong><i>Question by heather</i>: Javascript <a href="http://htmlindex.net" target=_self>html</a>&#8212;- &#8220;Begin&#8221; function question?</strong><br />
I need to write a script that uses the begin function  and four other worker functions to perform simple arithmetic calculations.</p>
<p>The skeleton of the script is::</p>
<p><script Language ="javascript"
function begin{
//prompt user for calculation type
//prompt user for first number, then parse float
//prompt user for second number, then parseFloat</p>
<p>switch(type){ 
case 1:
//call add function: result = add(firstNumber, secondNumber);
break;
case 2
//call subtract function: similar to above
case 3 
//call multiply funciton: similar to above
case 4
//call divide function: similar to above
default:
window.alert("invalid type")</p>
<p>}</p>
<p>window.alert("the result is: " + result);
}
//add function definition
function add(num1,num2){</p>
<p>return num1 + num2;
}</p>
<p>//subtraction function definition
function subtract(num1,num2){</p>
<p>return num1 - num2;
}
//multiplication function definition
funciton multipy(num1,num2){</p>
<p>return num1 * num2;
}
</script></p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by Andrew</i><br/>Why are u asking for help whn u know how to do it ??<br />
Here's the code any ways</p>
<p>function begin(){<br />
var no1, no2, calcType, result;<br />
no1 = prompt("Enter Numbet 1 :");<br />
no2 = prompt("Enter Numbet 2 :");<br />
calcType = prompt("Enter 1 = Add | 2 = Sub | 3 = Mul | 4 = Div :");<br />
var type = parseInt(calcType);</p>
<p>switch(type){<br />
case 1: result = add(no1, no2); break;<br />
case 2: result = sub(no1, no2); break;<br />
case 3: result = mul(no1, no2); break;<br />
case 4: result = div(no1, no2); break;<br />
default : alert("Invalid Option");<br />
}<br />
alert("The Result is : "+result);<br />
}</p>
<p>function add(n1, n2){<br />
no1 = parseInt(n1);<br />
no2 = parseInt(n1);<br />
return (no1+no2);<br />
}</p>
<p>I am hoping u will code the rest, that is well under your limits now.</p>
<p>Good luck</p>
<p><strong>Add your own answer in the comments!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fjavascript-html%2Fjavascript-html-begin-function-question';
  addthis_title  = 'Javascript+Html%26%238212%3B-+%26%238220%3BBegin%26%238221%3B+function+question%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/javascript-html/javascript-html-begin-function-question"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Arithmetic+Calculations' rel='tag' target='_blank'>Arithmetic Calculations</a>, <a class='technorati-link' href='http://technorati.com/tag/Begin' rel='tag' target='_blank'>Begin</a>, <a class='technorati-link' href='http://technorati.com/tag/Default+Window' rel='tag' target='_blank'>Default Window</a>, <a class='technorati-link' href='http://technorati.com/tag/function' rel='tag' target='_blank'>function</a>, <a class='technorati-link' href='http://technorati.com/tag/Good+Luck' rel='tag' target='_blank'>Good Luck</a>, <a class='technorati-link' href='http://technorati.com/tag/Heather' rel='tag' target='_blank'>Heather</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Function' rel='tag' target='_blank'>Javascript Function</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Html' rel='tag' target='_blank'>Javascript Html</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Prompt' rel='tag' target='_blank'>Javascript Prompt</a>, <a class='technorati-link' href='http://technorati.com/tag/Language+Javascript' rel='tag' target='_blank'>Language Javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Mul' rel='tag' target='_blank'>Mul</a>, <a class='technorati-link' href='http://technorati.com/tag/Multiplication' rel='tag' target='_blank'>Multiplication</a>, <a class='technorati-link' href='http://technorati.com/tag/N2' rel='tag' target='_blank'>N2</a>, <a class='technorati-link' href='http://technorati.com/tag/No2' rel='tag' target='_blank'>No2</a>, <a class='technorati-link' href='http://technorati.com/tag/question' rel='tag' target='_blank'>question</a>, <a class='technorati-link' href='http://technorati.com/tag/Question+Question' rel='tag' target='_blank'>Question Question</a>, <a class='technorati-link' href='http://technorati.com/tag/Script+Javascript' rel='tag' target='_blank'>Script Javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Script+Language' rel='tag' target='_blank'>Script Language</a>, <a class='technorati-link' href='http://technorati.com/tag/Simple+Arithmetic' rel='tag' target='_blank'>Simple Arithmetic</a>, <a class='technorati-link' href='http://technorati.com/tag/Skeleton' rel='tag' target='_blank'>Skeleton</a>, <a class='technorati-link' href='http://technorati.com/tag/Subtraction' rel='tag' target='_blank'>Subtraction</a>, <a class='technorati-link' href='http://technorati.com/tag/Switch+Type' rel='tag' target='_blank'>Switch Type</a>, <a class='technorati-link' href='http://technorati.com/tag/Type+Case' rel='tag' target='_blank'>Type Case</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/javascript-html/javascript-html-begin-function-question/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is the code &#8220;html coding&#8221; for point picture to view the bigger size?</title>
		<link>http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size</link>
		<comments>http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size#comments</comments>
		<pubDate>Tue, 17 Jan 2012 04:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html Coding]]></category>
		<category><![CDATA[Ahmad]]></category>
		<category><![CDATA[bigger]]></category>
		<category><![CDATA[Bunty]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Code Html]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[Picture View]]></category>
		<category><![CDATA[point]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[View Picture]]></category>

		<guid isPermaLink="false">http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size</guid>
		<description><![CDATA[Question by Ahmad S: what is the code &#8220;html coding&#8221; for point picture to view the bigger size? let say i have a picture in my page&#8230; i dont want to view the larger picture at the new page.. how to make it.. if i just point to the picture, the picture will expand right &#8230; <a href="http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhtml-coding%252Fwhat-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FxepVQY%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22what%20is%20the%20code%20%5C%22html%20coding%5C%22%20for%20point%20picture%20to%20view%20the%20bigger%20size%3F%22%20%7D);"></div>
<p><strong><i>Question by Ahmad S</i>: what is the code &#8220;<a href="http://htmlindex.net" target=_self>html</a> coding&#8221; for point picture to view the bigger size?</strong><br />
let say i have a picture in my page&#8230; i dont want to view the larger picture at the new page.. how to make it.. if i just point to the picture, the picture will expand right below it. as far as i know it is javascript.</p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by Bunty</i><br/>In dreamweaver create a layer and insert your big image. Make your small image a link so that when you place the mouse on it the layer with the big image shows and on mouseout the layer hides.</p>
<p>This is done via behaviours &#8211; show hide layer. Yes this is javascript, but dreamweaver makes it easy.</p>
<p>for more tutorials log on to http://gateway2internet.com</p>
<p><strong>Know better? Leave your own answer in the comments!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhtml-coding%2Fwhat-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size';
  addthis_title  = 'what+is+the+code+%26%238220%3Bhtml+coding%26%238221%3B+for+point+picture+to+view+the+bigger+size%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Ahmad' rel='tag' target='_blank'>Ahmad</a>, <a class='technorati-link' href='http://technorati.com/tag/bigger' rel='tag' target='_blank'>bigger</a>, <a class='technorati-link' href='http://technorati.com/tag/Bunty' rel='tag' target='_blank'>Bunty</a>, <a class='technorati-link' href='http://technorati.com/tag/code' rel='tag' target='_blank'>code</a>, <a class='technorati-link' href='http://technorati.com/tag/Code+Html' rel='tag' target='_blank'>Code Html</a>, <a class='technorati-link' href='http://technorati.com/tag/coding' rel='tag' target='_blank'>coding</a>, <a class='technorati-link' href='http://technorati.com/tag/Dreamweaver' rel='tag' target='_blank'>Dreamweaver</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/Html+Coding' rel='tag' target='_blank'>Html Coding</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/picture' rel='tag' target='_blank'>picture</a>, <a class='technorati-link' href='http://technorati.com/tag/Picture+View' rel='tag' target='_blank'>Picture View</a>, <a class='technorati-link' href='http://technorati.com/tag/point' rel='tag' target='_blank'>point</a>, <a class='technorati-link' href='http://technorati.com/tag/size' rel='tag' target='_blank'>size</a>, <a class='technorati-link' href='http://technorati.com/tag/view' rel='tag' target='_blank'>view</a>, <a class='technorati-link' href='http://technorati.com/tag/View+Picture' rel='tag' target='_blank'>View Picture</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/html-coding/what-is-the-code-html-coding-for-point-picture-to-view-the-bigger-size/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>*URGENT* How can I edit this search function JAVASCRIPT to work with my website?</title>
		<link>http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website</link>
		<comments>http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website#comments</comments>
		<pubDate>Fri, 13 Jan 2012 04:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How Save Word Table As Html]]></category>
		<category><![CDATA[*URGENT*]]></category>
		<category><![CDATA[Amature]]></category>
		<category><![CDATA[Array Index]]></category>
		<category><![CDATA[Demonstration Search]]></category>
		<category><![CDATA[Descriptive Comments]]></category>
		<category><![CDATA[Directory C]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[Friends Links]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Image Logo]]></category>
		<category><![CDATA[Images Link]]></category>
		<category><![CDATA[Internet Site]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Javascript Solution]]></category>
		<category><![CDATA[Key Words]]></category>
		<category><![CDATA[Link Image]]></category>
		<category><![CDATA[Link Logo]]></category>
		<category><![CDATA[Logo Link]]></category>
		<category><![CDATA[Main Images]]></category>
		<category><![CDATA[Page Search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Search Engine Data]]></category>
		<category><![CDATA[Search Function]]></category>
		<category><![CDATA[Search Website]]></category>
		<category><![CDATA[This]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Website Question]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website</guid>
		<description><![CDATA[Question by Yiaggi: *URGENT* How can I edit this search function JAVASCRIPT to work with my website? Hi guys, I urgently require a search website function for a website I have built. I need it to simply search my website by keyword and deliver the results in an organised manor. I have been iven a &#8230; <a href="http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fhow-save-word-table-as-html%252Furgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FzkdKrQ%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22%2AURGENT%2A%20How%20can%20I%20edit%20this%20search%20function%20JAVASCRIPT%20to%20work%20with%20my%20website%3F%22%20%7D);"></div>
<p><strong><i>Question by Yiaggi</i>: *URGENT* How can I edit this search function JAVASCRIPT to work with my website?</strong><br />
Hi guys,</p>
<p>I urgently require a search website function for a website I have built. I need it to simply search my website by keyword and deliver the results in an organised manor. </p>
<p>I have been iven a JAVASCRIPT solution which looks like it could work but I am an amature when it comes to JAVASCRIPT and have no idea which part of the code I need to edit to make it work with my site! I have some PHP experience but no JAVASCRIPT. </p>
<p>Below is the code &#8211; could someone please explain which bits to edit? Thank you for your time &#8211; you are properly saving my bacon! </p>
<p>CODE<br />
&#8212;&#8212;&#8212;</p>
<p><HEAD></p>
<p><!-- Original:  Dion (biab@iinet.net.au) --><br />
<!-- Web Site:  http://www.iinet.net.au/~biab --></p>
<p><!-- This script and many more are available free online at --><br />
<!-- The JavaScript Source!! http://javascript.internet.com --></p>
<p><!-- Begin<br />
var item = new Array();</p>
<p>/* Here is where all the magic happens.<br />
    Just enter as many additional pages that<br />
    that you want to search, then fill in the<br />
    additional listings for each page.<br />
*/</p>
<p>// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"</p>
<p>c=0; item[c]=new Array("index.html","","DemoSite","index,main,start,home,front","Demonstration search engine data about an imagined but probable internet site.");<br />
c++; item[c]=new Array("about.htm","","About Me","about,author,contact,email,who","Contact details and general information about the creator of the site and what the site is about.");<br />
c++; item[c]=new Array("links.htm","","Links page","links,more,where,similar,friends","Links to my favourite sites which I find interesting. Other friends sites which have similar interests to my own.");<br />
c++; item[c]=new Array("main.htm","main/","Main Page","content,main,focus","The main part of my site which contains what you have come to see. Lots of stuff like that and more great things. All in a sub directory.");<br />
c++; item[c]=new Array("logo.jpg","main/images/","Link Logo","link,image,logo,graphic","The logo.jpg is just a small image which you can place on your site as a link to me. It's in a second level subdirectory.");</p>
<p>page="<html><head></head><body bgcolor='white'><center><br />
<table border=0 cellspacing=10 width=80%>&#8220;;</p>
<p>function search(frm) {<br />
win = window.open(&#8220;&#8221;,&#8221;",&#8221;scrollbars&#8221;);<br />
win.document.write(page);<br />
txt = frm.srchval.value.split(&#8221; &#8220;);<br />
fnd = new Array(); total=0;<br />
for (i = 0; i < item.length; i++) {<br />
fnd[i] = 0; order = new Array(0, 4, 2, 3);<br />
for (j = 0; j < order.length; j++)<br />
for (k = 0; k < txt.length; k++)<br />
if (item[i][order[j]].toLowerCase().indexOf(txt[k]) > -1 &#038;&#038; txt[k] != &#8220;&#8221;)<br />
fnd[i] += (j+1);<br />
}<br />
for (i = 0; i < fnd.length; i++) {<br />
n = 0; w = -1;<br />
for (j = 0;j < fnd.length; j++)<br />
if (fnd[j] > n) { n = fnd[j]; w = j; };<br />
if (w > -1) total += show(w, win, n);<br />
fnd[w] = 0;<br />
}<br />
win.document.write(&#8220;</table>
<p>Total found: &#8220;+total+&#8221;<br /></body></html>&#8220;);<br />
win.document.close();<br />
}<br />
function show(which,wind,num) {<br />
link = item[which][1] + item[which][0];<br />
line = &#8220;<br />
<tr>
<td>&#8220;+item[which][2]+&#8221; Score: &#8220;+num+&#8221;<br />&#8220;;<br />
line += item[which][4] + &#8220;<br />&#8220;+link+&#8221;</td>
</tr>
<p>&#8220;;<br />
wind.document.write(line);<br />
return 1;<br />
}<br />
//  End &#8211;></p>
<p></head></p>
<p><body><br />
<center></p>
<form method=get action="javascript:void(0)" onsubmit="search(this); return false;">
<tr>
<td>
<input type=text name=srchval value="">
<input type=submit value="Search"></td>
</tr>
</form>
<p></center></p>
<p><center><br />
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br />
by The JavaScript Source</font><br />
</center>
<p><!-- Script Size:  3.16 KB --></p>
<p>ps &#8230;. I SEE THE BIT THAT SAY&#8217;S &#8220;THIS IS WHERE THE MAGIC HAPPENS&#8221; BUT AM CONFUSED ABOUT WHAT VARIABLES TO ADD THERE &#8230;&#8230;.. ! Any help would be truely appreciated &#8211; I have till the end of today to complete! </p>
<p>Ta x</p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by AnalProgrammer</i><br/>Just after the magic happens you have this comment.<br />
// &#8220;Page Name&#8221;,&#8221;path&#8221;,&#8221;Page Title&#8221;,&#8221;Many,Key,Words&#8221;,&#8221;Descriptive Comments&#8221;</p>
<p>Then you have this.<br />
c=0; item[c]=new Array(&#8220;index.<a href="http://htmlindex.net" target=_self>html</a>&#8220;,&#8221;",&#8221;DemoSite&#8221;,&#8221;index,&#8230; search engine data about an imagined but probable internet site.&#8221;);<br />
and<br />
c++; item[c]=new Array(&#8220;about.htm&#8221;,&#8221;",&#8221;About Me&#8221;,&#8221;about,author,contact,email,who&#8221;,&#8221;Co&#8230; details and general information about the creator of the site and what the site is about.&#8221;);<br />
These are the pages with the details that you can search on and are in the format described by that comment.<br />
The first line must start<br />
c=0; item[c]=<br />
the second and subsequent lines must start<br />
c++; item[c]=<br />
Now fill in the rest.  Keep adding to the list for all your pages.</p>
<p>Have fun.</p>
<p><strong>What do you think? Answer below!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fhow-save-word-table-as-html%2Furgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website';
  addthis_title  = '%2AURGENT%2A+How+can+I+edit+this+search+function+JAVASCRIPT+to+work+with+my+website%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/%2AURGENT%2A' rel='tag' target='_blank'>*URGENT*</a>, <a class='technorati-link' href='http://technorati.com/tag/Amature' rel='tag' target='_blank'>Amature</a>, <a class='technorati-link' href='http://technorati.com/tag/Array+Index' rel='tag' target='_blank'>Array Index</a>, <a class='technorati-link' href='http://technorati.com/tag/Demonstration+Search' rel='tag' target='_blank'>Demonstration Search</a>, <a class='technorati-link' href='http://technorati.com/tag/Descriptive+Comments' rel='tag' target='_blank'>Descriptive Comments</a>, <a class='technorati-link' href='http://technorati.com/tag/Directory+C' rel='tag' target='_blank'>Directory C</a>, <a class='technorati-link' href='http://technorati.com/tag/edit' rel='tag' target='_blank'>edit</a>, <a class='technorati-link' href='http://technorati.com/tag/Friends+Links' rel='tag' target='_blank'>Friends Links</a>, <a class='technorati-link' href='http://technorati.com/tag/function' rel='tag' target='_blank'>function</a>, <a class='technorati-link' href='http://technorati.com/tag/Image+Logo' rel='tag' target='_blank'>Image Logo</a>, <a class='technorati-link' href='http://technorati.com/tag/Images+Link' rel='tag' target='_blank'>Images Link</a>, <a class='technorati-link' href='http://technorati.com/tag/Internet+Site' rel='tag' target='_blank'>Internet Site</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/Javascript+Solution' rel='tag' target='_blank'>Javascript Solution</a>, <a class='technorati-link' href='http://technorati.com/tag/Key+Words' rel='tag' target='_blank'>Key Words</a>, <a class='technorati-link' href='http://technorati.com/tag/Link+Image' rel='tag' target='_blank'>Link Image</a>, <a class='technorati-link' href='http://technorati.com/tag/Link+Logo' rel='tag' target='_blank'>Link Logo</a>, <a class='technorati-link' href='http://technorati.com/tag/Logo+Link' rel='tag' target='_blank'>Logo Link</a>, <a class='technorati-link' href='http://technorati.com/tag/Main+Images' rel='tag' target='_blank'>Main Images</a>, <a class='technorati-link' href='http://technorati.com/tag/Page+Search' rel='tag' target='_blank'>Page Search</a>, <a class='technorati-link' href='http://technorati.com/tag/search' rel='tag' target='_blank'>search</a>, <a class='technorati-link' href='http://technorati.com/tag/Search+Engine+Data' rel='tag' target='_blank'>Search Engine Data</a>, <a class='technorati-link' href='http://technorati.com/tag/Search+Function' rel='tag' target='_blank'>Search Function</a>, <a class='technorati-link' href='http://technorati.com/tag/Search+Website' rel='tag' target='_blank'>Search Website</a>, <a class='technorati-link' href='http://technorati.com/tag/This' rel='tag' target='_blank'>This</a>, <a class='technorati-link' href='http://technorati.com/tag/website' rel='tag' target='_blank'>website</a>, <a class='technorati-link' href='http://technorati.com/tag/Website+Question' rel='tag' target='_blank'>Website Question</a>, <a class='technorati-link' href='http://technorati.com/tag/work' rel='tag' target='_blank'>work</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/how-save-word-table-as-html/urgent-how-can-i-edit-this-search-function-javascript-to-work-with-my-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML &#8220;Back&#8221; button does not change select menu back to previous selection?</title>
		<link>http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection</link>
		<comments>http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Onchange And Html]]></category>
		<category><![CDATA[Back]]></category>
		<category><![CDATA[Back Button]]></category>
		<category><![CDATA[Big Time]]></category>
		<category><![CDATA[Browser Cache]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[Cal King]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[Hello]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Html Button]]></category>
		<category><![CDATA[Html Select]]></category>
		<category><![CDATA[Initial Loading]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[Menu Entry]]></category>
		<category><![CDATA[previous]]></category>
		<category><![CDATA[Queen]]></category>
		<category><![CDATA[Screen Functions]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[X 84]]></category>

		<guid isPermaLink="false">http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection</guid>
		<description><![CDATA[Question by : html &#8220;Back&#8221; button does not change select menu back to previous selection? Hello, I am looking for HELP with a select menu. My problem is that when the &#8220;Back&#8221; button is clicked the screen functions correctly and goes back to the previous screen, however, the select menu entry does not go back &#8230; <a href="http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection">Continue reading</a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fhtmlindex.net%252Fonchange-and-html%252Fhtml-back-button-does-not-change-select-menu-back-to-previous-selection%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FwISZIC%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22HTML%20%5C%22Back%5C%22%20button%20does%20not%20change%20select%20menu%20back%20to%20previous%20selection%3F%22%20%7D);"></div>
<p><strong><i>Question by </i>: <a href="http://htmlindex.net" target=_self>html</a> &#8220;Back&#8221; button does not change select menu back to previous selection?</strong><br />
Hello,</p>
<p>I am looking for HELP with a select menu. My problem is that when the &#8220;Back&#8221; button is clicked the screen functions correctly and goes back to the previous screen, however, the select menu entry does not go back to the previous entry. Here is the select menu:</p>
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)" size="1">
<option value="Mattress Covers - Crib.htm#Anc" selected><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Crib<br />
28&#8243; x 52&#8243;</font></b></font></span></option>
<option value="Mattress Covers - Twin.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Twin:<br />
39&#8243; x 75&#8243;</font></b></font></span></option>
<option value="Mattress Covers - Long Twin.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Long<br />
Twin: 39&#8243; x 80&#8243;</font></b></font></span></option>
<option value="Mattress Covers - Full.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Full:<br />
54&#8243; x 75&#8243;</font></b></font></span></option>
<option value="Mattress Covers - Queen.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Queen:<br />
60&#8243; x 80&#8243;</font></b></font></span></option>
<option value="Mattress Covers - King.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">King:<br />
78&#8243; x 80&#8243;</font></b></font></span></option>
<option value="Mattress Covers - Cal King.htm#Anc"><span class="arialbold13point"><font color="#FFFFFF" class="arialbold12point"><b><font size="+1">Cal<br />
King: 72&#8243; x 84&#8243;</font></b></font></span></option>
</select>
<p>Any help will be BIG TIME APPRECIATED.</p>
<p>Thanks,</p>
<p>Peter</p>
<p><strong>Best answer:</strong></p>
<p><i>Answer by just &#8220;JR&#8221;</i><br/>Back button reloads the cached page, so it does not reload the whole page!<br />
(and you use a class you do not control: MM_jumpMenu&#8230;, which is most likely a javascript, and javascript is NOT reloaded with the back button.)<br />
You will have to force the browser to discard the cache at the initial loading (a different problem with EVERY browser!)</p>
<p><strong>Add your own answer in the comments!</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fhtmlindex.net%2Fonchange-and-html%2Fhtml-back-button-does-not-change-select-menu-back-to-previous-selection';
  addthis_title  = 'HTML+%26%238220%3BBack%26%238221%3B+button+does+not+change+select+menu+back+to+previous+selection%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>

<div style="float:left;margin:0px 0px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>
<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Back' rel='tag' target='_blank'>Back</a>, <a class='technorati-link' href='http://technorati.com/tag/Back+Button' rel='tag' target='_blank'>Back Button</a>, <a class='technorati-link' href='http://technorati.com/tag/Big+Time' rel='tag' target='_blank'>Big Time</a>, <a class='technorati-link' href='http://technorati.com/tag/Browser+Cache' rel='tag' target='_blank'>Browser Cache</a>, <a class='technorati-link' href='http://technorati.com/tag/button' rel='tag' target='_blank'>button</a>, <a class='technorati-link' href='http://technorati.com/tag/Cal+King' rel='tag' target='_blank'>Cal King</a>, <a class='technorati-link' href='http://technorati.com/tag/change' rel='tag' target='_blank'>change</a>, <a class='technorati-link' href='http://technorati.com/tag/Control' rel='tag' target='_blank'>Control</a>, <a class='technorati-link' href='http://technorati.com/tag/Hello' rel='tag' target='_blank'>Hello</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/Html+Button' rel='tag' target='_blank'>Html Button</a>, <a class='technorati-link' href='http://technorati.com/tag/Html+Select' rel='tag' target='_blank'>Html Select</a>, <a class='technorati-link' href='http://technorati.com/tag/Initial+Loading' rel='tag' target='_blank'>Initial Loading</a>, <a class='technorati-link' href='http://technorati.com/tag/javascript' rel='tag' target='_blank'>javascript</a>, <a class='technorati-link' href='http://technorati.com/tag/menu' rel='tag' target='_blank'>menu</a>, <a class='technorati-link' href='http://technorati.com/tag/Menu+Entry' rel='tag' target='_blank'>Menu Entry</a>, <a class='technorati-link' href='http://technorati.com/tag/previous' rel='tag' target='_blank'>previous</a>, <a class='technorati-link' href='http://technorati.com/tag/Queen' rel='tag' target='_blank'>Queen</a>, <a class='technorati-link' href='http://technorati.com/tag/Screen+Functions' rel='tag' target='_blank'>Screen Functions</a>, <a class='technorati-link' href='http://technorati.com/tag/select' rel='tag' target='_blank'>select</a>, <a class='technorati-link' href='http://technorati.com/tag/selection' rel='tag' target='_blank'>selection</a>, <a class='technorati-link' href='http://technorati.com/tag/X+84' rel='tag' target='_blank'>X 84</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://htmlindex.net/onchange-and-html/html-back-button-does-not-change-select-menu-back-to-previous-selection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: htmlindex.net @ 2012-05-24 14:32:18 -->
