<?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>Helmut Granda &#187; HTML</title>
	<atom:link href="http://www.helmutgranda.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.helmutgranda.com</link>
	<description>learning through interaction</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Open A Jump Menu in a new window</title>
		<link>http://www.helmutgranda.com/2005/06/07/open-a-jump-menu-in-a-new-window/</link>
		<comments>http://www.helmutgranda.com/2005/06/07/open-a-jump-menu-in-a-new-window/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 17:02:29 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=163</guid>
		<description><![CDATA[This is for Macromedia DreamWeaver, but it can be applied to any Jump Menu using the right JS function. HTML: original: &#60;select name=&#34;nameOfYourMenu&#34; onChange=&#34;MM_jumpMenu('parent',this,0)&#34;&#62; change to: &#60;/select&#62;&#60;select name=&#34;nameOfYourMenu&#34; onChange=&#34;MM_jumpMenu('window.open()',this,0)&#34;&#62;]]></description>
			<content:encoded><![CDATA[<p>This is for Macromedia DreamWeaver, but it can be applied to any Jump Menu using the right JS function.</p>
<div class="syntax_hilite"><strong>HTML:</strong>
<div id="html-1">
<div>
<ol style="">
original:<br />
&lt;select name=&quot;nameOfYourMenu&quot; onChange=&quot;MM_jumpMenu('parent',this,0)&quot;&gt;</p>
<p>change to:<br />
&lt;/select&gt;&lt;select name=&quot;nameOfYourMenu&quot;<br />
onChange=&quot;MM_jumpMenu('window.open()',this,0)&quot;&gt;
</ol>
</div>
</div>
</div>
</select>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2005/06/07/open-a-jump-menu-in-a-new-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating HTML Links</title>
		<link>http://www.helmutgranda.com/2003/10/03/creating-html-links/</link>
		<comments>http://www.helmutgranda.com/2003/10/03/creating-html-links/#comments</comments>
		<pubDate>Sat, 04 Oct 2003 00:48:41 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=93</guid>
		<description><![CDATA[This Tutorial goes to GlowintheDark, his question was: u know like on a web site how can i link another website so when they click it automaticaly takes them there? Ok, this is really easy all you have to use is the &#60;a&#62; &#60;/a&#62; tag. Let me give you an example so you can understand [...]]]></description>
			<content:encoded><![CDATA[<p>This Tutorial goes to  GlowintheDark, his question was:</p>
<p ><b><i>u know like on a web site how can i link another website so when they click it automaticaly takes them there?  </b></i></p>
<p>Ok,<br />
  this is really easy all you have to use is the  &lt;a&gt; &lt;/a&gt; tag. Let me give you<br />
an example so you can understand it better.</p>
<p>&lt;a href=&quot;http://www.google.com&quot;&gt; Click Here to go to Google &lt;/a&gt;</p>
<p>Ok, lets go step by step:</p>
<p>a href=&quot;YOURLINKGOESHERE&quot;</p>
<p>what ever is inside the quotes will be the link you want to go to</p>
<p>&lt;a&gt;TITLE OF YOUR LINK&lt;/a&gt;</p>
<p>What ever you put between the &lt;a&gt;&lt;/a&gt; tags is what is going to be visible<br />
  to the user. So if we place the sample above as code this is what it would<br />
  look like:
  </p>
<p><a href="http://www.google.com" target="_blank">Click Here to go to Google</a></p>
<p>One more recomendation. You want to add the &quot;target&quot; parameter inside your<br />
  links. that way you will ensure the person links inside your page or goes outside<br />
  your page.</p>
<p>You have 4 choises </p>
<p>_blank = this will make sure your link opens in a new browser window (great<br />
  when you want the user to go to a link but your website will remain in the<br />
  background) <br />
  _parent = this will make sure your link opens in the parent window<br />
  _self = this will make sure your link opens in the same page you are at (once<br />
  the user clicks on the link if it does not belong to your site they are gone) <br />
  _top= this will make sure your link opens in the top window (great when you<br />
  are inside frames)</p>
<p>it looks like this:</p>
<p>&lt;a href=&quot;http://www.google.com&quot; target=&quot;_blank&quot; &gt; Click<br />
  Here to go to Google &lt;/a&gt;</p>
<p>Questions or comments leave a message or email me</p>
<p>...helmut</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2003/10/03/creating-html-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
