<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'I cant even get started....' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'I cant even get started....' posted on the 'JavaScript' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Thu, 20 Jun 2013 01:03:10 -0700</pubDate>
    <lastBuildDate>Thu, 20 Jun 2013 01:03:10 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>I cant even get started....</title>
      <link>http://www.programmersheaven.com/mb/java-script/291601/291601/i-cant-even-get-started/</link>
      <description>So I learn html and think to myself "hrmmmmm, now how could I spiff up my website?"  and the answer that came to me was Java!  So I putter my way on over to every freaking website I can find, and I know how to program some java now, but I have no freaking idea what program I need to enter the data in, or where to get the data compiler, or how to get it on my website etc... so if you could give some links to a begginer that would be great!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java-script/291601/291601/i-cant-even-get-started/</guid>
      <pubDate>Tue, 08 Feb 2005 16:35:12 -0700</pubDate>
      <category>JavaScript</category>
    </item>
    <item>
      <title>Re: I cant even get started....</title>
      <link>http://www.programmersheaven.com/mb/java-script/291601/291605/re-i-cant-even-get-started/#291605</link>
      <description>&lt;strong&gt;&lt;span style="color: Red;"&gt;This message was edited by the walrus at  2005-2-8 17:49:25&lt;/span&gt;&lt;/strong&gt;&lt;hr /&gt;&lt;br /&gt;
: So I learn html and think to myself "hrmmmmm, now how could I spiff up my website?"  and the answer that came to me was Java!  So I putter my way on over to every freaking website I can find, and I know how to program some java now, but I have no freaking idea what program I need to enter the data in, or where to get the data compiler, or how to get it on my website etc... so if you could give some links to a begginer that would be great!&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
Umm hate to tell ya, but you learned the wrong thing.  "Java" is a language that you use to write applications for the computer.  It is *compiled* into machine code.  Java can't be used to make webpages--it makes actual applications (Internet Explorer is an example of something that could have been made in Java (it wasnt, but that's the kind of thing Java makes)).&lt;br /&gt;
&lt;br /&gt;
But that doesn't mean looking into Java was a total waste of time.  "Java&lt;span style="color: Red;"&gt;script&lt;/span&gt;" is what's used to make webpages (along with HTML, CSS, and a lot of other things), and Javascript is very similar to Java, but unlike Java, Javascript isn't compiled, so to answer your question.. You don't need any sort of compiler to use Javascript on your website.  All you do is use a tag to let the webbrowser know when to process the Javascript.  You say you know HTML, so I assume you're familiar with the concept of tags, such as the &amp;lt;body&amp;gt; tag, the &amp;lt;img&amp;gt; tag, etc.  Well, to use Javascript, you use the &amp;lt;script&amp;gt; tag.  All you do is put it in your HTML code and put Javascript between the openning and closing tags, and when you view your page the Javascript will be executed.  Here's how it looks:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
&amp;lt;html&amp;gt;
    &amp;lt;body&amp;gt;
        Some text &amp;lt;br /&amp;gt;
        &lt;span style="color: Green;"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;&lt;span style="color: Blue;"&gt;

            var i = 0;

            document.write('This is my first javascript page!&amp;lt;br /&amp;gt;');
            document.write('Here are the numbers 1 to 10 output by javascript:&amp;lt;br /&amp;gt;');
            for(i = 1; i &amp;lt;= 10; i++)
                document.write(i + '&amp;lt;br /&amp;gt;');

        &lt;/span&gt;&lt;span style="color: Green;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
        Some more text &amp;lt;br /&amp;gt;
        Google's logo: &amp;lt;img src="http://www.google.com/images/logo.gif" /&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
The blue part is the javascript.  Everything else is HTML.  As you can see, you can use Javascript to make HTML for your webpage.  This allows you to make dynamic text, so that things can change on the webpage depending on certain events..  Here's an example that changes the text of a webpage when you click a button:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;onClick Example&amp;lt;/title&amp;gt;
    &amp;lt;script type="text/javascript"&amp;gt;

        function changeText(iText) {
            document.getElementById('DynamicTextObject').inner
HTML = iText;
        }

    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;
&amp;lt;div id="DynamicTextObject"&amp;gt;When you click the button, Javascript will cause this text to change!&amp;lt;/div&amp;gt;
&amp;lt;input type="button" onClick="javascript:changeText('The text has been changed by Javascript');" value="Change Text" /&amp;gt;
&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
of course, if you'd like to do Java programming as well and make applications for your computer, you can download a Java compiler for free from sun.com at &amp;#91;http://www.sun.com/download/index.jsp?cat=Application%20Development&amp;amp;tab=3&amp;amp;subcat=SDKs%20(Software%20Development%20Kits)&amp;#93;.  you'll need to look through the documentation to learn how to compile using sun's tools.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java-script/291601/291605/re-i-cant-even-get-started/#291605</guid>
      <pubDate>Tue, 08 Feb 2005 17:43:09 -0700</pubDate>
      <category>JavaScript</category>
    </item>
    <item>
      <title>Re: I cant even get started....</title>
      <link>http://www.programmersheaven.com/mb/java-script/291601/293654/re-i-cant-even-get-started/#293654</link>
      <description>: : So I learn html and think to myself "hrmmmmm, now how could I spiff up my website?"  and the answer that came to me was Java!  So I putter my way on over to every freaking website I can find, and I know how to program some java now, but I have no freaking idea what program I need to enter the data in, or where to get the data compiler, or how to get it on my website etc... so if you could give some links to a begginer that would be great!&lt;br /&gt;
:  &lt;br /&gt;
: &lt;br /&gt;
: Umm hate to tell ya, but you learned the wrong thing.  "Java" is a language that you use to write applications for the computer.  It is *compiled* into machine code.  Java can't be used to make webpages--it makes actual applications (Internet Explorer is an example of something that could have been made in Java (it wasnt, but that's the kind of thing Java makes)).&lt;br /&gt;
: &lt;br /&gt;
:  Learning Java wasn't a waste of time! Because sometimes you must use Java in Web-design. You can't use only JavaScript because it has advantages and disadvantages and here comes Java in help because Java is filling the gaps from JavaScript. For example JavaScript isn't very precise and it's slow. &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java-script/291601/293654/re-i-cant-even-get-started/#293654</guid>
      <pubDate>Thu, 24 Feb 2005 05:22:18 -0700</pubDate>
      <category>JavaScript</category>
    </item>
    <item>
      <title>Re: I cant even get started....</title>
      <link>http://www.programmersheaven.com/mb/java-script/291601/297127/re-i-cant-even-get-started/#297127</link>
      <description>:Java can't be used to make webpages&lt;br /&gt;
&lt;br /&gt;
Yes it can, ever heard of JSP pages?&lt;br /&gt;
&lt;br /&gt;
ITA&lt;br /&gt;
&lt;br /&gt;
"Let us smite the evil slime eating hordes who may befall us on our quest to be the ultimate programmers of the known universe!"&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java-script/291601/297127/re-i-cant-even-get-started/#297127</guid>
      <pubDate>Fri, 25 Mar 2005 03:31:35 -0700</pubDate>
      <category>JavaScript</category>
    </item>
  </channel>
</rss>