<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4211353490474568885</id><updated>2011-11-13T10:13:19.198-08:00</updated><category term='When JS Statements Run'/><category term='term'/><category term='Placing Code'/><category term='Js Function'/><category term='Operators'/><category term='Prompt Method'/><category term='write and writeln'/><category term='Hiding the JavaScript'/><category term='Confirm Method'/><category term='Comments'/><category term='Privacy Policy'/><category term='Alert Method'/><category term='Event'/><category term='Application'/><category term='Objects'/><category term='Examples'/><category term='Date object'/><category term='Variable'/><category term='Conditionals-looping'/><title type='text'>Javascript</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default?start-index=101&amp;max-results=100'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>101</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5678482034831446310</id><published>2010-12-10T11:08:00.001-08:00</published><updated>2010-12-10T11:08:03.098-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Mathematical Operators</title><content type='html'>&lt;h4&gt; Javascript Mathematical Operators&lt;/h4&gt;
&lt;p&gt;Given that y=5&lt;/p&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt; Operator&lt;/td&gt;
    &lt;td&gt; Description&lt;/td&gt;
    &lt;td&gt; Example&lt;/td&gt;
    &lt;td&gt; Result&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; +&lt;/td&gt;
    &lt;td&gt; Addition&lt;/td&gt;
    &lt;td&gt; x=y+2&lt;/td&gt;
    &lt;td&gt; x=7&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; -&lt;/td&gt;
    &lt;td&gt; Subtraction&lt;/td&gt;
    &lt;td&gt; x=y-2&lt;/td&gt;
    &lt;td&gt; x=3&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; * &lt;/td&gt;
    &lt;td&gt; Multiplication&lt;/td&gt;
    &lt;td&gt; x=y*2&lt;/td&gt;
    &lt;td&gt; x=10&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; /&lt;/td&gt;
    &lt;td&gt; Division&lt;/td&gt;
    &lt;td&gt; x=y/2&lt;/td&gt;
    &lt;td&gt; x=2.5&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; %&lt;/td&gt;
    &lt;td&gt; Modulus(division remainder)&lt;/td&gt;
    &lt;td&gt; x=y%2&lt;/td&gt;
    &lt;td&gt; x=1&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; ++ &lt;/td&gt;
    &lt;td&gt; Increment&lt;/td&gt;
    &lt;td&gt; x=++y&lt;/td&gt;
    &lt;td&gt; x=6 &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; --&lt;/td&gt;
    &lt;td&gt; Decrement&lt;/td&gt;
    &lt;td&gt; x=--y&lt;/td&gt;
    &lt;td&gt; x=4 &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td height="22"&gt;-&lt;/td&gt;
    &lt;td&gt;Negation&lt;/td&gt;
    &lt;td&gt;x=-y &lt;/td&gt;
    &lt;td&gt; X=-5&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;In a compound equation like the one assigned to longEquation, each of the operations 
  is subject to standard mathematical precedence (that is, multiplication and 
  division operations are calculated first, from left to right, after which the 
  addition and subtraction operations are calculated from left to right).&lt;/p&gt;
&lt;p&gt; If you want to override the standard precedence of these operations, you can 
  use brackets, just like you learned in school. Any operations that occur inside 
  brackets will be calculated before any multiplication or division is done:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var unbracketed = 4 + 6 * 5;&lt;br&gt;
  var bracketed = (4 + 6) * 5;&lt;/div&gt;


&lt;p&gt; Here, the value of unbracketed will be 34, because 6 * 5 is calculated first. 
  The value of bracketed will be 50, because (4 + 6) is calculated first.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5678482034831446310?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5678482034831446310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5678482034831446310' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5678482034831446310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5678482034831446310'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/mathematical-operators.html' title='Mathematical Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5903438326469911853</id><published>2010-12-10T11:07:00.001-08:00</published><updated>2010-12-10T11:07:16.476-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Operators Precedence</title><content type='html'>&lt;h4&gt;Javascript Operators Precedence&lt;/h4&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Operator&lt;br&gt;&lt;/td&gt;
    &lt;td&gt;Description&lt;br&gt;&lt;/td&gt;
    &lt;td&gt; Priority&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;. []&lt;/td&gt;
    &lt;td&gt;member&lt;/td&gt;
    &lt;td&gt;Highest&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;()&lt;/td&gt;
    &lt;td&gt; call&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;! ~ - + ++ --&lt;/td&gt;
    &lt;td&gt;negation/increment typeof void delete&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;* / % &lt;/td&gt;
    &lt;td&gt;Multiplication, Division, Modulus&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;+ -&lt;/td&gt;
    &lt;td&gt;Addition, Subtraction &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;lt;&amp;lt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; &lt;/td&gt;
    &lt;td&gt;Bitwise Shift&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;lt; &amp;lt;= &amp;gt; &amp;gt;= &lt;/td&gt;
    &lt;td&gt;Comparison&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;== != &lt;/td&gt;
    &lt;td&gt;Equality &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;amp;&lt;/td&gt;
    &lt;td&gt;bitwise-and &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;^&lt;/td&gt;
    &lt;td&gt;bitwise-xor &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;|&lt;/td&gt;
    &lt;td&gt;bitwise-or &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;amp;&amp;amp;&lt;/td&gt;
    &lt;td&gt;Logical AND &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;||&lt;/td&gt;
    &lt;td&gt;Logical OR &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;?:&lt;/td&gt;
    &lt;td&gt;Conditional&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;= += -= *= /= %= &lt;/td&gt;
    &lt;td&gt; Assignment &lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;,&lt;/td&gt;
    &lt;td&gt;Comma&lt;/td&gt;
    &lt;td&gt; Lowest&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5903438326469911853?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5903438326469911853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5903438326469911853' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5903438326469911853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5903438326469911853'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/operators-precedence.html' title='Operators Precedence'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8543536858102781206</id><published>2010-12-10T11:06:00.003-08:00</published><updated>2010-12-10T11:06:33.093-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Comparison Operators</title><content type='html'>&lt;h4&gt;Javascript Comparison Operators&lt;/h4&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt;
    &lt;td&gt;Operator&lt;/td&gt;
    &lt;td&gt;Description&lt;/td&gt;
    &lt;td&gt;Example&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;== &lt;/td&gt;
    &lt;td&gt;Equals&lt;/td&gt;
    &lt;td&gt; x == 6 returns true if x is 6&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt; !=&lt;/td&gt;
    &lt;td&gt;Does not equal&lt;/td&gt;
    &lt;td&gt; x != 6 returns true if x is not 6&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;lt;&lt;/td&gt;
    &lt;td&gt;Less-than operator.&lt;/td&gt;
    &lt;td&gt; x &amp;lt; 6 returns true if x is less than 6&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;gt;&lt;/td&gt;
    &lt;td&gt; Greater-than operator&lt;/td&gt;
    &lt;td&gt;x &amp;gt; 6 returns true if x is greater than 6&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;gt;=&lt;/td&gt;
    &lt;td&gt;Greater-than or equal operator&lt;/td&gt;
    &lt;td&gt; x &amp;gt;= 6 returns true if x is either 6, or greater than 6&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;lt;= &lt;/td&gt;
    &lt;td&gt;Is less than or equal to&lt;/td&gt;
    &lt;td&gt; x &amp;lt;= 6 returns true if x is either equal to 6, or less than 6&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8543536858102781206?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8543536858102781206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8543536858102781206' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8543536858102781206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8543536858102781206'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/comparison-operators.html' title='Comparison Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1512337351478713732</id><published>2010-12-10T11:06:00.001-08:00</published><updated>2010-12-10T11:06:00.507-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>String operators</title><content type='html'>&lt;h4&gt;Javascript String operators&lt;/h4&gt;
&lt;p&gt;If you’d like to add two strings together, or concatenate them, you use the 
  same + operator that you use for numbers:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var complete = &amp;quot;com&amp;quot; + &amp;quot;plete&amp;quot;;&lt;/div&gt;


&lt;p&gt; The value of complete will now be &amp;quot;complete&amp;quot;.Again, you can use 
  a combination of strings and string variables with the + operator:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var name = &amp;quot;Slim Shady&amp;quot;;&lt;br&gt;
  var sentence = &amp;quot;Your name is &amp;quot; + name;&lt;/div&gt;


&lt;p&gt; 
  The value of sentence will be &amp;quot;Your name is Slim Shady&amp;quot;. You can use 
  the += operator with strings, but not the ++ operator—it doesn’t make sense 
  to increment strings. So the previous set of statements could be rewritten as:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var name = &amp;quot;Slim Shady&amp;quot;;&lt;br&gt;
        var sentence = &amp;quot;Your name is &amp;quot;;&lt;br&gt;
  sentence += name;&lt;/div&gt;
&lt;p&gt; If you try to add a number to a string, JavaScript will automatically convert 
  the number into a string, then concatenate the two resulting strings:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var sentence = &amp;quot;I am &amp;quot; + 1977&lt;br&gt;
  sentence now contains &amp;quot; I am 1977&amp;quot;. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1512337351478713732?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1512337351478713732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1512337351478713732' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1512337351478713732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1512337351478713732'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/string-operators.html' title='String operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3729688981502732872</id><published>2010-12-10T11:05:00.001-08:00</published><updated>2010-12-10T11:05:18.270-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Assignment Operators</title><content type='html'>&lt;h4&gt;JavaScript Assignment Operators&lt;/h4&gt;
  &lt;p&gt;Assignment operators are used to assign values to JavaScript variables.&lt;/p&gt;
  &lt;p&gt;Given that x=20 and y=10&lt;/p&gt;
 
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Operator&lt;/td&gt;
    &lt;td&gt;Example&lt;/td&gt;
    &lt;td&gt;Same As &lt;/td&gt;
    &lt;td&gt; Result&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;=&lt;/td&gt;
    &lt;td&gt;x=y&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;br&gt;&lt;/td&gt;
    &lt;td&gt;x=10&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;+= &lt;/td&gt;
    &lt;td&gt;x+=y &lt;/td&gt;
    &lt;td&gt;x=x+y&lt;/td&gt;
    &lt;td&gt;x=30&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;-=&lt;/td&gt;
    &lt;td&gt;x-=y&lt;/td&gt;
    &lt;td&gt;x=x-y&lt;/td&gt;
    &lt;td&gt;x=10&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;*= &lt;/td&gt;
    &lt;td&gt;x*=y&lt;/td&gt;
    &lt;td&gt;x=x*y&lt;/td&gt;
    &lt;td&gt; x=200&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;/=&lt;/td&gt;
    &lt;td&gt;x/=y&lt;/td&gt;
    &lt;td&gt;x=x/y&lt;/td&gt;
    &lt;td&gt;x=2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;%= &lt;/td&gt;
    &lt;td&gt;x%=y&lt;/td&gt;
    &lt;td&gt;x=x%y&lt;/td&gt;
    &lt;td&gt; x=0&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3729688981502732872?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3729688981502732872/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3729688981502732872' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3729688981502732872'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3729688981502732872'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/assignment-operators.html' title='Assignment Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-727785788467108679</id><published>2010-12-10T11:04:00.003-08:00</published><updated>2010-12-10T11:04:48.733-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Logical Operators</title><content type='html'>&lt;h4&gt;JavaScript Logical Operators&lt;/h4&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Operator&lt;/td&gt;
    &lt;td&gt;Description&lt;/td&gt;
    &lt;td&gt;Examples&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;amp;&amp;amp; (AND)&lt;/td&gt;
    &lt;td&gt;Logical AND.&lt;/td&gt;
    &lt;td&gt; (x&amp;lt;3 &amp;amp;&amp;amp; y&amp;lt;=5)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;|| (OR)&lt;/td&gt;
    &lt;td&gt;Logical OR&lt;/td&gt;
    &lt;td&gt;(x&amp;lt;3 || y&amp;lt;=5)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;! (NOT) &lt;/td&gt;
    &lt;td&gt;Logical NOT.&lt;/td&gt;
    &lt;td&gt; !(x&amp;gt;3)&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-727785788467108679?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/727785788467108679/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=727785788467108679' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/727785788467108679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/727785788467108679'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/logical-operators.html' title='Logical Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1418641444193303199</id><published>2010-12-10T11:04:00.001-08:00</published><updated>2010-12-10T11:04:16.150-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Special Operators</title><content type='html'>&lt;h4&gt; JavaScript Special Operators&lt;/h4&gt;
 
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Special Operator&lt;/td&gt;
    &lt;td&gt;Description&lt;/td&gt;
    &lt;td&gt; Example&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;?: (Conditional)&lt;/td&gt;
    &lt;td&gt; {condition)? iftrue : iffalse&lt;/td&gt;
    &lt;td&gt;y=-1&lt;br&gt;
      x=(y&amp;lt;0)? 5: 10 &lt;br&gt;
      result; x=5&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;,&lt;/td&gt;
    &lt;td&gt;You can use the comma operator when you want to include multiple expressions 
      in a location that requires a single expression.&lt;/td&gt;
    &lt;td&gt; for (var i=0, j=9; i &amp;lt;= 9; i++, j--)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; delete&lt;/td&gt;
    &lt;td&gt;The delete operator is used to delete an object&lt;/td&gt;
    &lt;td&gt;fruit = new Array (&amp;quot;apple&amp;quot;, &amp;quot;pear&amp;quot;, &amp;quot;orange&amp;quot;, 
      &amp;quot;cherry&amp;quot;, &amp;quot;grape&amp;quot;); &lt;br&gt;
      delete fruit[2]; &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; new&lt;/td&gt;
    &lt;td&gt;The new operator can be used create an instance of a user-defined object 
      type or of one of the built-in object types.&lt;/td&gt;
    &lt;td&gt;function author(name, real_name, age) &lt;br&gt;
      { &lt;br&gt;
      this.name = name &lt;br&gt;
      this.real_name = real_name &lt;br&gt;
      this.age = age &lt;br&gt;
      } &lt;br&gt;
      author1 = new author(&amp;quot;John Lynch&amp;quot;, &amp;quot;Charlie Schwarz&amp;quot;, 
      43)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;this&lt;/td&gt;
    &lt;td&gt; Keyword that you can use to refer to the current object.&lt;/td&gt;
    &lt;td&gt;function describeAge(obj) &lt;br&gt;
      { &lt;br&gt;
      if(obj.year &amp;lt; 1996) &lt;br&gt;
      return &amp;quot;Old-fashioned&amp;quot; &lt;br&gt;
      else &lt;br&gt;
      return &amp;quot;Good-as-new&amp;quot; &lt;br&gt;
      } &lt;br&gt; &lt;br&gt;
      function car(make, year, description) &lt;br&gt;
      {this.make = make, this.year = year, this.description = describeAge(this)} 
      &lt;br&gt; &lt;br&gt;
      myCar = new car(&amp;quot;Ford&amp;quot;, &amp;quot;1993&amp;quot;, describeAge(this))&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;typeof&lt;/td&gt;
    &lt;td&gt;The typeof operator returns the type of an unevaluated operand which can 
      be a number, string, variable, object or keyword.&lt;/td&gt;
    &lt;td&gt;Var age = 33&lt;br&gt;
      typeof(age) returns number &lt;br&gt;
      typeof 33 returns number &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; void&lt;/td&gt;
    &lt;td&gt;The void operator specifies an expression to be evaluated&lt;br&gt;
      without returning a value.&lt;br&gt;&lt;/td&gt;
    &lt;td&gt;The following example creates a hyperlink on the word &amp;quot;green&amp;quot; 
      which, when clicked, changes the background color to light green: &lt;br&gt; &lt;br&gt;
      Code: &lt;br&gt;
      Sam turned &amp;lt;a href= &amp;quot;javascript:void(document.bgColor='lightgreen') 
      &amp;quot; &amp;gt; green &amp;lt;/a&amp;gt;.&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1418641444193303199?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1418641444193303199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1418641444193303199' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1418641444193303199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1418641444193303199'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/special-operators.html' title='Special Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5553885689500331103</id><published>2010-12-10T11:03:00.001-08:00</published><updated>2010-12-10T11:03:42.903-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Bitwise operators</title><content type='html'>&lt;h4&gt;JavaScript Bitwise operators&lt;/h4&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Operator&lt;/td&gt;
    &lt;td&gt;Meaning&lt;/td&gt;
    &lt;td&gt;Example&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;&amp;amp;&lt;/td&gt;
    &lt;td&gt;AND&lt;/td&gt;
    &lt;td&gt; 1111 &amp;amp; 0011 = 0011&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;~ &lt;/td&gt;
    &lt;td&gt;NOT&lt;/td&gt;
    &lt;td&gt; ~0011=1100&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;|&lt;/td&gt;
    &lt;td&gt;OR&lt;/td&gt;
    &lt;td&gt; 1111 | 0011 = 1111&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;^&lt;/td&gt;
    &lt;td&gt;exclusive OR&lt;/td&gt;
    &lt;td&gt;1111 ^ 0011 = 1100&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;lt;&amp;lt;&lt;/td&gt;
    &lt;td&gt;Left shift&lt;/td&gt;
    &lt;td&gt; 1111&amp;lt;&amp;lt;2=1100&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;gt;&amp;gt;&lt;/td&gt;
    &lt;td&gt;Right shift&lt;/td&gt;
    &lt;td&gt;1111&amp;gt;&amp;gt;2=0011&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;gt;&amp;gt;&amp;gt; &lt;/td&gt;
    &lt;td&gt;Right shift, fill with zeros&lt;/td&gt;
    &lt;td&gt; 1111&amp;gt;&amp;gt;&amp;gt;2=0011&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5553885689500331103?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5553885689500331103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5553885689500331103' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5553885689500331103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5553885689500331103'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/12/bitwise-operators.html' title='Bitwise operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-51619487085088368</id><published>2010-11-27T09:09:00.001-08:00</published><updated>2010-11-27T09:09:27.411-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onClick Event</title><content type='html'>&lt;h4&gt;Javascript onClick Event&lt;/h4&gt;
&lt;p&gt;Here is example : &lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
        &amp;lt;head&amp;gt;&lt;br&gt;
        &amp;lt;title&amp;gt;Javascript OnClick Event&amp;lt;/title&amp;gt;&lt;br&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
        function load()&lt;br&gt;
        {&lt;br&gt;
        alert(&amp;quot;Javascript Onclick Event&amp;quot;);&lt;br&gt;
        }&lt;br&gt;
        &amp;lt;/script&amp;gt;&lt;br&gt;
        &amp;lt;/head&amp;gt;&lt;br&gt;
        &amp;lt;body&amp;gt;&lt;br&gt;
        &amp;lt;form onClick=&amp;quot;load()&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;input type=&amp;quot;button&amp;quot; name=&amp;quot;myclick&amp;quot; value=&amp;quot;click 
        here&amp;quot; &amp;gt;&lt;br&gt;
        &amp;lt;/form&amp;gt;&lt;br&gt;
        &amp;lt;/BODY&amp;gt;&lt;br&gt;
  &amp;lt;/HTML&amp;gt;&lt;/div&gt;
&lt;p&gt; &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onclick.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onClick application"&gt;Examine 
  this javacript example&lt;/a&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-51619487085088368?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/51619487085088368/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=51619487085088368' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/51619487085088368'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/51619487085088368'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onclick-event.html' title='onClick Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5937235434326448045</id><published>2010-11-27T09:08:00.001-08:00</published><updated>2010-11-27T09:08:03.119-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onMouseOver , onMouseOut Event</title><content type='html'>&lt;h4&gt;Javascript onMouseOver , onMouseOut Event&lt;/h4&gt;
&lt;p&gt;Here is example :&lt;/p&gt;
&lt;p&gt; Note: This Javascript code not running with I.E 7,0 and Firefoz&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt; &lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;Javascript onMouseOver 
      ve onMouseOut Events &amp;lt;/title&amp;gt;&lt;br&gt; &amp;lt;script language=&amp;quot;javascript1.2&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;!--&lt;br&gt;
      function over()&lt;br&gt;
      {window.status=&amp;quot;Click and go to http://javascript-lesson.blogspot.com&amp;quot; 
      }&lt;br&gt;
      function out()&lt;br&gt;
      {window.status=&amp;quot;javascript lessons&amp;quot; }&lt;br&gt;
      --&amp;gt;&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;a 
      href=&amp;quot;http://javascript-lessons.blogspot.com&amp;quot; onMouseOver = over() 
      &lt;br&gt;
      onMouseOut =out()&amp;gt;&lt;br&gt;
      http://javascript-lesson.blogspot.com&amp;lt;/a&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5937235434326448045?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5937235434326448045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5937235434326448045' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5937235434326448045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5937235434326448045'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onmouseover-onmouseout-event.html' title='onMouseOver , onMouseOut Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5582508352048274136</id><published>2010-11-27T09:07:00.001-08:00</published><updated>2010-11-27T09:07:15.747-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onSubmit Event</title><content type='html'>&lt;h4&gt;Javascript onSubmit Event &lt;/h4&gt;
&lt;p&gt;Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt; &lt;br&gt;
        &amp;lt;head&amp;gt;&lt;br&gt;
        &amp;lt;title&amp;gt;Javascript OnSubmit Event&amp;lt;/title&amp;gt;&lt;br&gt;
        &amp;lt;/head&amp;gt;&lt;br&gt;
        &amp;lt;body&amp;gt;&lt;br&gt;
        &amp;lt;form action=&amp;quot;http://www.yahoo.com&amp;quot; method=&amp;quot;post&amp;quot; 
        onSubmit=&amp;quot;return window.confirm('Do you want to go to Yahoo')&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Submit&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;/form&amp;gt;&lt;br&gt;
        Do you Want to go to Yahoo.com&lt;br&gt;
        &amp;lt;/BODY&amp;gt;&lt;br&gt;
        &amp;lt;/HTML&amp;gt;&lt;br&gt;
&lt;/div&gt;

&lt;p&gt; &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onsubmit.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onSubmit application"&gt;Examine 
  this javacript example&lt;/a&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5582508352048274136?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5582508352048274136/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5582508352048274136' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5582508352048274136'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5582508352048274136'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onsubmit-event.html' title='onSubmit Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8651338656488389454</id><published>2010-11-27T09:06:00.001-08:00</published><updated>2010-11-27T09:06:29.240-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onReset Event</title><content type='html'>&lt;h4&gt;Javascript onReset Event &lt;/h4&gt;
&lt;p&gt;Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;Javascript Reset&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;form name=&amp;quot;form1&amp;quot; method=&amp;quot;post&amp;quot; 
      action=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;textfield&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;textfield2&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;textarea 
      name=&amp;quot;textarea&amp;quot; &amp;gt;&amp;lt;/textarea&amp;gt;&lt;br&gt; &amp;lt;input type=&amp;quot;reset&amp;quot; 
      name=&amp;quot;Reset&amp;quot; value=&amp;quot;Clear&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;/form&amp;gt;&lt;br&gt; 
      &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;

&lt;p&gt; &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onreset.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onReset application"&gt;Examine 
  this javacript example&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8651338656488389454?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8651338656488389454/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8651338656488389454' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8651338656488389454'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8651338656488389454'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onreset-event.html' title='onReset Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1725284498896359293</id><published>2010-11-27T09:05:00.001-08:00</published><updated>2010-11-27T09:05:51.415-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onChange Event</title><content type='html'>&lt;h4&gt;Javascript onChange Event&lt;/h4&gt;
&lt;p&gt;Here is example :&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;script language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br&gt;
      function ss() {&lt;br&gt;
      var al=&amp;quot;hotmail&amp;quot;&lt;br&gt;
      var as =&amp;quot;Google&amp;quot;&lt;br&gt;
      var ad=&amp;quot;dmoz&amp;quot;&lt;br&gt;
      var af=&amp;quot;yahoo&amp;quot;&lt;br&gt;
      if(document.fff.secenek.value==al){&lt;br&gt;
      ms= window.open('http://www.hotmail.com')}&lt;br&gt;
      if(document.fff.secenek.value==as){&lt;br&gt;
      ms= window.open('http://www.google.com')}&lt;br&gt;
      if(document.fff.secenek.value==ad){&lt;br&gt;
      ms= window.open('http://www.dmoz.com')}&lt;br&gt;
      if(document.fff.secenek.value==af){&lt;br&gt;
      ms= window.open('http://www.yahoo.com')}}&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;java 
      Script Onchange&amp;lt;/title&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body &amp;gt;&lt;br&gt; &amp;lt;form 
      name=&amp;quot;fff&amp;quot; &amp;gt;&lt;br&gt; &amp;lt;select name=&amp;quot;secenek&amp;quot; onchange=&amp;quot;ss()&amp;quot; 
      &amp;gt;&lt;br&gt; &amp;lt;option &amp;gt;Chose Web Site&lt;br&gt; &amp;lt;option value=&amp;quot;hotmail&amp;quot; 
      &amp;gt;hotmail.com &lt;br&gt; &amp;lt;option value=&amp;quot;yahoo&amp;quot; &amp;gt;yahoo.com &lt;br&gt; 
      &amp;lt;option value=&amp;quot;super&amp;quot; &amp;gt;google.com&lt;br&gt; &amp;lt;option value=&amp;quot;dmoz&amp;quot; 
      &amp;gt;dmoz.com&lt;br&gt; &amp;lt;/select&amp;gt;&lt;br&gt;
      Which web site do you visit!!! &lt;br&gt; &amp;lt;/form&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;


&lt;p&gt; &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onchange.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onChange application"&gt;Examine 
  this javacript example&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1725284498896359293?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1725284498896359293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1725284498896359293' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1725284498896359293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1725284498896359293'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onchange-event.html' title='onChange Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1138315849234503367</id><published>2010-11-27T09:04:00.001-08:00</published><updated>2010-11-27T09:04:51.107-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onLoad , onUnLoad Event</title><content type='html'>&lt;h4&gt;Javascript onLoad , onUnLoad Event &lt;/h4&gt;
&lt;p&gt;Here is example :&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;onLoad onUnLoad Event&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;script language=&amp;quot;javascript1.2&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;!--&lt;br&gt;
      function hello()&lt;br&gt;
      {&lt;br&gt;
      alert(&amp;quot;Wellcome My Web Site&amp;quot;)&lt;br&gt;
      }&lt;br&gt;
      function by()&lt;br&gt;
      {&lt;br&gt;
      alert(&amp;quot;By y..&amp;quot;)&lt;br&gt;
      }&lt;br&gt;
      --&amp;gt;&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body onLoad=&amp;quot;hello()&amp;quot; 
      onUnload=&amp;quot;by()&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;

&lt;p&gt; &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onload.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onLoad onUnLoad application"&gt;Examine 
  this javacript example&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1138315849234503367?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1138315849234503367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1138315849234503367' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1138315849234503367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1138315849234503367'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onload-onunload-event.html' title='onLoad , onUnLoad Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4037213956296119339</id><published>2010-11-27T09:03:00.001-08:00</published><updated>2010-11-27T09:03:48.963-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onError onAbort Event</title><content type='html'>&lt;h4&gt;Javascript onError onAbort Event &lt;/h4&gt;
&lt;p&gt;Here is example :&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;img src=&amp;quot;image.gif&amp;quot; onError=&amp;quot;alert(&amp;quot;image.gif did not 
  load')&amp;quot;&amp;gt;&lt;/div&gt;
&lt;br&gt;

&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;img src=&amp;quot;image.gif&amp;quot; onAbort=&amp;quot;alert(&amp;quot;image.gif did not 
  load')&amp;quot;&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4037213956296119339?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4037213956296119339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4037213956296119339' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4037213956296119339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4037213956296119339'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onerror-onabort-event.html' title='onError onAbort Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3437339431624433812</id><published>2010-11-27T09:02:00.001-08:00</published><updated>2010-11-27T09:02:34.722-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>onFocus, onBlur Event</title><content type='html'>&lt;h4&gt;Javascript onFocus, onBlur Event&lt;/h4&gt;
&lt;p&gt;Here is example : &lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;HTML&amp;gt;&lt;br&gt;
   &amp;lt;HEAD&amp;gt;&lt;br&gt; &amp;lt;TITLE&amp;gt; onFocus ve onBlur Event&amp;lt;/TITLE&amp;gt;&lt;br&gt; 
      &amp;lt;SCRIPT LANGUAGE=&amp;quot;JavaScript1.2&amp;quot;&amp;gt;&lt;br&gt;
      function show()&lt;br&gt;
      {&lt;br&gt;
      document.nameform.ad.value=&amp;quot;Your Name added.&amp;quot;&lt;br&gt;
      }&lt;br&gt;
      function check()&lt;br&gt;
      {&lt;br&gt;
      document.nameform.ad.value=&amp;quot;Please don’t wrong!&amp;quot;&lt;br&gt;
      }&lt;br&gt;
      // --&amp;gt;&lt;br&gt; &amp;lt;/SCRIPT&amp;gt;&lt;br&gt; &amp;lt;/HEAD&amp;gt;&lt;br&gt; &amp;lt;BODY&amp;gt;&lt;br&gt; &amp;lt;BR&amp;gt;&lt;br&gt; 
      &amp;lt;FORM NAME=&amp;quot;nameform&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;P&amp;gt;please write your name 
      and click anywhere:&lt;br&gt; &amp;lt;BR&amp;gt;&amp;lt;INPUT TYPE=&amp;quot;text&amp;quot; NAME=&amp;quot;ad&amp;quot; 
      VALUE=&amp;quot;Write Your Name&amp;quot; SIZE=25 onBlur=&amp;quot;show()&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;P&amp;gt;What is Your jop:&lt;br&gt; &amp;lt;BR&amp;gt;&amp;lt;INPUT TYPE=&amp;quot;text&amp;quot; 
      NAME=&amp;quot;Job&amp;quot; VALUE=&amp;quot;Write Your Jop&amp;quot; SIZE=25 onFocus=&amp;quot;check()&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;/FORM&amp;gt;&lt;br&gt; &amp;lt;/BODY&amp;gt;&lt;br&gt; &amp;lt;/HTML&amp;gt;
   
   &lt;/div&gt;

&lt;p&gt;&lt;br&gt;
  &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/onblur.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript onBlur Onfocus application"&gt;Examine 
  this javacript example&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3437339431624433812?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3437339431624433812/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3437339431624433812' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3437339431624433812'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3437339431624433812'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/11/onfocus-onblur-event.html' title='onFocus, onBlur Event'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1249322215866372659</id><published>2010-10-26T11:13:00.003-07:00</published><updated>2010-10-26T11:13:45.078-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Anchor Object</title><content type='html'>&lt;h3&gt;Anchor Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;A NAME="anchorName"&amp;gt;
textOrImageAnchor
&amp;lt;/A&amp;gt;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1249322215866372659?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1249322215866372659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1249322215866372659' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1249322215866372659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1249322215866372659'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/anchor-object.html' title='Anchor Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2453977271192588417</id><published>2010-10-26T11:13:00.001-07:00</published><updated>2010-10-26T11:13:17.883-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Applet Object</title><content type='html'>&lt;h3&gt;Applet Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;APPLET
CODE="AppletURL"
HEIGHT="PixelCount"
NAME="AppletName"
WIDTH="PixelCount"
[ALIGN="AlignmentLocation"]
[ALT="AlternateTextDisplay"]
[CODEBASE="ClassFileDirectory"]
[HSPACE="MarginPixelCount"]
[VSPACE="MarginPixelCount"]&amp;gt;
 &amp;lt;PARAM NAME="AppletParameterName”  VALUE=”ParameterValue”&amp;gt; 
 ...
 &amp;lt;PARAM NAME="AppletParameterName”   VALUE=”ParameterValue”&amp;gt;
&amp;lt;/APPLET&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;name(string)
(Java variables)
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt; onMouseOut=
 onMouseOver=
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;(Java methods)
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2453977271192588417?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2453977271192588417/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2453977271192588417' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2453977271192588417'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2453977271192588417'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/applet-object.html' title='Applet Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6451011470001767013</id><published>2010-10-26T11:12:00.008-07:00</published><updated>2010-10-26T11:13:06.022-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Area Object</title><content type='html'>&lt;h3&gt;Area Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;MAP NAME="areaMapName"&amp;gt;
 &amp;lt;AREA
   COORDS="x1,y1,x2,y2…." |"x-center,y-center,radius"
   HREF="URLorLocation"
   [NOHREF]
   [SHAPE="rect" | "poly" | "circle" | "default" ]
   [TARGET="windowName"]
   [onFocus="EventHandlerTextOrFunction"]
   [onMouseOut="EventHandlerTextOrFunction"]
   [onMouseOver="EventHandlerTextOrFunction"]&amp;gt;
&amp;lt;/MAP&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;links[index].target   (window name)
[location object properties]
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onMouseOut=
onMouseOver=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6451011470001767013?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6451011470001767013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6451011470001767013' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6451011470001767013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6451011470001767013'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/area-object.html' title='Area Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-173873982657565706</id><published>2010-10-26T11:12:00.007-07:00</published><updated>2010-10-26T11:12:57.859-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Array Object</title><content type='html'>&lt;h3&gt;Array Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;var myArray = new Array([integer] | [val1 [ , val2 … [ , valn]]])
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;length(integer)
prototype (expression)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;join("delimiterChar")
reverse()
sort(compareFunc)
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-173873982657565706?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/173873982657565706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=173873982657565706' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/173873982657565706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/173873982657565706'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/array-object.html' title='Array Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7398605574044104746</id><published>2010-10-26T11:12:00.005-07:00</published><updated>2010-10-26T11:12:35.697-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Button, Submit, and Reset Objects</title><content type='html'>&lt;h3&gt;Button, Submit, and Reset Objects&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM&amp;gt;
 &amp;lt;INPUT
TYPE="button" | "submit" |"reset"
[NAME="buttonName]
[VALUE="labelText"]
[onClick="EventHandlerTextOrFunction"]
[onFocus="EventHandlerTextOrFunction"]
[onLoad="EventHandlerTextOrFunction"]
[onUnLoad="EventHandlerTextOrFunction"]&amp;gt;
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;name  (string)
type   (string)
value  (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;click()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onClick=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7398605574044104746?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7398605574044104746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7398605574044104746' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7398605574044104746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7398605574044104746'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/button-submit-and-reset-objects.html' title='Button, Submit, and Reset Objects'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7680205543140747860</id><published>2010-10-26T11:12:00.003-07:00</published><updated>2010-10-26T11:12:22.471-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Checkbox Object</title><content type='html'>&lt;h3&gt;Checkbox Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM&amp;gt;
 &amp;lt;INPUT
TYPE="checkbox"
[CHECKED]
[NAME="boxName]
[VALUE="buttonValue"]
[onClick="EventHandlerTextOrFunction"]&amp;gt;
buttonText
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;checked   (Boolean)
defaultChecked (Boolean)
name   (string)
type  (string)
value (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;click()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onClick=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7680205543140747860?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7680205543140747860/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7680205543140747860' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7680205543140747860'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7680205543140747860'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/checkbox-object.html' title='Checkbox Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-874871132380223652</id><published>2010-10-26T11:12:00.001-07:00</published><updated>2010-10-26T11:12:10.230-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Date Object</title><content type='html'>&lt;h3&gt;Date Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;var myDate = new Date("Month dd, yyyy, hh:mm:ss")
var myDate = new Date("Month dd, yyyy")
var myDate = new Date("yy,mm,dd,hh,mm,ss")
var myDate = new Date("yy, mm, dd")
var myDate = new Date(millisecondsInteger)
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;prototype  (expression)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;myDate.getDate()(1-31)
myDate.getDay() (0-6)
myDate.getHours()   (0-23)
myDate.getMinutes()  (0-59)
myDate.getMonth()   (0-11)
myDate.getSeconds() (0-59)
myDate.getTime()(0-…)
myDate.getTimezoneOffset()  (0-…)
myDate.getYear()(70-…)
myDate.setDate()(1-31)
myDate.setDay() (0-6)

myDate.setHours()   (0-23)
myDate.setMinutes() (0-59)
myDate.setMonth()   (0-11)
myDate.setSeconds() (0-59)
myDate.setTime()(0-…)
myDate.setYear()(70-…)
myDate.toGMTString()(String)
myDate.toLocaleString() (String)
Date.parse("dateString")
Date.UTC("date values")
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-874871132380223652?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/874871132380223652/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=874871132380223652' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/874871132380223652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/874871132380223652'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/date-object.html' title='Date Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3492951465238733060</id><published>2010-10-26T11:11:00.007-07:00</published><updated>2010-10-26T11:11:58.204-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Document Object</title><content type='html'>&lt;h3&gt;Document Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;BODY
   [ALINK="#activatedLinkColor"]
   [BACKGROUND="backgroundImageURL"]
   [BGCOLOR="#backgroundColor"]
   [LINK="#unfollowedLinkColor"]
   [TEXT="#foregroundColor"]
   [VLINK="#followedLinkColor"]
   [onLoad="#handlerTextOrFunction"]
   [onUnload="#handlerTextOrFunction"]
   &amp;lt;/BODY&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;alinkColor  (hexadecimal triplet or constant)
anchors  (array)
applets  (array)
bgColor  (hexadecimal triplet or constant)
cookie   (string)
domain   (string)
embeds   (array)
fgColor  (hexadecimal triplet or constant)
forms(array)
images   (array)
lastModified (date string)
linkColor(hexadecimal triplet or constant)
links  (array)
location (string)
referrer (string)
title(string)
URL (string)
vlinkColor   (hexadecimal triplet or constant)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;write("string1" [,”string2”,...,“stringn”])
write("string1" [,”string2”,...,“stringn”])
write("string1" [,”string2”,...,“stringn”])
open("mimeType")
close()
clear()
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3492951465238733060?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3492951465238733060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3492951465238733060' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3492951465238733060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3492951465238733060'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/document-object.html' title='Document Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5247917548643564181</id><published>2010-10-26T11:11:00.005-07:00</published><updated>2010-10-26T11:11:45.200-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>FileUpload Object</title><content type='html'>&lt;h3&gt;FileUpload Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM&amp;gt;
&amp;lt;input
TYPE="file"
[NAME="fieldName"]
[SIZE="numberOfCharacters"]&amp;gt;
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;name (string)
value (string)
type  (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;blur()
focus()
select()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onBlur=
onChange=
onFocus=
onSelect=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5247917548643564181?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5247917548643564181/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5247917548643564181' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5247917548643564181'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5247917548643564181'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/fileupload-object.html' title='FileUpload Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7452194533699943746</id><published>2010-10-26T11:11:00.003-07:00</published><updated>2010-10-26T11:11:33.630-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Form Object</title><content type='html'>&lt;h3&gt;Form Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM
   [ACTION="serverURL"]
   [ENCTYPE="MIMEType"]
   [METHOD=GET | POST]
   [NAME="formName"]
   [onSubmit="eventHandlerTextOrFunction"]
   [onReset="eventHandlerTextOrFunction"]
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;action   (URL)
elements (array)
encoding (MIME type)
method   (GET or POST)
name  (string)
target   (window name)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;reset()
submit()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onReset=
onSubmit=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7452194533699943746?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7452194533699943746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7452194533699943746' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7452194533699943746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7452194533699943746'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/form-object.html' title='Form Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7298712649305311546</id><published>2010-10-26T11:11:00.001-07:00</published><updated>2010-10-26T11:11:20.303-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Function Object</title><content type='html'>&lt;h3&gt;Function Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;function functionName( [parameter1]...[, parameterN] ) {
   statements
 }
var myFunction = new function([parameter1]...[, parameterN], statements)
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;arguments  (array)
caller   (function)
prototyp (expression)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;reset()
submit()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onReset=
onSubmit=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7298712649305311546?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7298712649305311546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7298712649305311546' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7298712649305311546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7298712649305311546'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/function-object.html' title='Function Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6570229988792023413</id><published>2010-10-26T11:10:00.008-07:00</published><updated>2010-10-26T11:11:06.297-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Hidden Objects</title><content type='html'>&lt;h3&gt;Hidden Objects&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM&amp;gt;
 &amp;lt;INPUT
NAME="fieldName"
TYPE="hidden"
[VALUE="contents"]&amp;gt;
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;defaultValue(string)
name   (string)
type(string)
value   (string)
&lt;/pre&gt;

&lt;h3&gt;History Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;length  (integer)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;back()
forward()
go(relativeNumber |"URLorTitleSubstring")
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6570229988792023413?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6570229988792023413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6570229988792023413' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6570229988792023413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6570229988792023413'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/hidden-objects.html' title='Hidden Objects'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8994452779328127840</id><published>2010-10-26T11:10:00.007-07:00</published><updated>2010-10-26T11:10:51.908-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Image Object</title><content type='html'>&lt;h3&gt;Image Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;IMG
NAME="imageName"
SRC="imageURL"
[ | "right" | "top" | "absmiddle" | "absbottom" |
 "texttop" | "middle" | "baseline" | "bottom" ]
[BORDER="pixelCount"]
[HEIGHT="pixelCount" | "percentageValue%"]
[HSPACE="pixelCount"]
[ISMAP]
[LOWSRC="lowResImageURL"]
[USEMAP="areaMapName"]
[VSPACE="pixelCount"]
[WIDTH="pixelCount" | "percentageValue%"]
[onAbort="EventHandlerTextOrFunction"]
[onError="EventHandlerTextOrFunction"]
[onLoad="EventHandlerTextOrFunction"]&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;border   (integer)
complete (Boolean)
height   (integer)
hspace   (integer)
lowsrc   (string)
src  (string)
vspace   (integer)
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onAbort=
onError=
onLoad=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8994452779328127840?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8994452779328127840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8994452779328127840' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8994452779328127840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8994452779328127840'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/image-object.html' title='Image Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1951065909466977534</id><published>2010-10-26T11:10:00.005-07:00</published><updated>2010-10-26T11:10:37.364-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Layer Object</title><content type='html'>&lt;h3&gt;Layer Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;above
background  (colorValue)
below   (layerObject)
bgColor   (colorValue)
clip.top  (pixelCount)
clip.left (pixelCount)
clip.right  (pixelCount)
clip.bottom   (pixelCount)
clip.width  (pixelCount)
clip.height (pixelCount)
height(pixelCount)
left  (pixelCount)
layers(array)
name(string)
parentLayer   (layerObject)
siblingAbove  (layerObject)
siblingBelow  (layerObject)
top   (pixelCount)
visibility  (hide|show|inherit)
width   (pixelCount)
zIndex(integer)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;offset()
moveTo()
resize()
moveAbove()
moveBelow()
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1951065909466977534?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1951065909466977534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1951065909466977534' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1951065909466977534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1951065909466977534'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/layer-object.html' title='Layer Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3388188788813834234</id><published>2010-10-26T11:10:00.003-07:00</published><updated>2010-10-26T11:10:23.692-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Link Object</title><content type='html'>&lt;h3&gt;Link Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;A HREF="URLorLocation”
[NAME="anchorName”]
[TARGET="windowName”]
[onClick="EventHandlerTextOrFunction”]
[onMouseOut=”EventHandlerTextOrFunction”]
[onMouseOver=”EventHandlerTextOrFunction”]&amp;gt;
TextOrImageLink
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;links[index].target   (window name)
[location object properties]
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onClick=
onMouseOut=
onMouseOver=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3388188788813834234?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3388188788813834234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3388188788813834234' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3388188788813834234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3388188788813834234'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/link-object.html' title='Link Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6075812341714124028</id><published>2010-10-26T11:10:00.001-07:00</published><updated>2010-10-26T11:10:09.313-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Math Object</title><content type='html'>&lt;h3&gt;Math Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;Math.E
Math.LN2
Math.LN10
Math.LOG2E
Math.LOG10E
Math.PI
Math.SQRT1_2
Math.SQRT2
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;Math.abs()
Math.acos()
Math.asin()
Math.atan()
Math.atan2()
Math.ceil()
Math.cos()
Math.exp()
Math.floor()
Math.log()
Math.max()
Math.min()
Math.pow()
Math.random()
Math.round()
Math.sin()
Math.sqrt()
Math.tan()
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6075812341714124028?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6075812341714124028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6075812341714124028' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6075812341714124028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6075812341714124028'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/math-object.html' title='Math Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7623459149199426710</id><published>2010-10-26T11:09:00.005-07:00</published><updated>2010-10-26T11:09:55.365-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>MimeType Object</title><content type='html'>&lt;h3&gt;MimeType Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;description (string)
enabledPlugin   (string)
type(string)
suffixes(string)
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7623459149199426710?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7623459149199426710/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7623459149199426710' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7623459149199426710'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7623459149199426710'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/mimetype-object.html' title='MimeType Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3505368324705989015</id><published>2010-10-26T11:09:00.003-07:00</published><updated>2010-10-26T11:09:43.468-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Navigator Object</title><content type='html'>&lt;h3&gt;Navigator Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;appName (string)
appVersion  (string)
appCodeName(string)
mimeTypes  (string)
plugins (string)
userAgent   (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;javaEnabled()
taintEnabled()
&lt;/pre&gt;

&lt;h3&gt;Plugin Object&lt;/h3&gt;
&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;description (string)
enabledPlugin   (string)
type(string)
suffixes(string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;javaEnabled()
taintEnabled()
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3505368324705989015?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3505368324705989015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3505368324705989015' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3505368324705989015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3505368324705989015'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/navigator-object.html' title='Navigator Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1440261870737329921</id><published>2010-10-26T11:09:00.001-07:00</published><updated>2010-10-26T11:09:27.666-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Radio Object</title><content type='html'>&lt;h3&gt;Radio Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM
 &amp;lt;INPUT
   NAME=”buttonGroupName”
   TYPE=”radio”
   [CHECKED]
   [VALUE=”buttonValue”]
   [onClick=”EventHandlerTextOrFunction”]
   buttonText
&amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;checked  (Boolean)
defaultChecked(Boolean)
name  (string)
value(string)
type (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;click()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onClick=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1440261870737329921?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1440261870737329921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1440261870737329921' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1440261870737329921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1440261870737329921'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/radio-object.html' title='Radio Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1811439504882039329</id><published>2010-10-26T11:08:00.002-07:00</published><updated>2010-10-26T11:09:10.764-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Select Object</title><content type='html'>&lt;h3&gt;Select Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM
 &amp;lt;SELECT
   NAME=”listName”
   [MULTIPLE]
   [SIZE=”NumberOfCharacters”]
   [onBlur=”EventHandlerTextOrFunction”]
   [onChange=”EventHandlerTextOrFunction”]
   [onFocus=”EventHandlerTextOrFunction”]&amp;gt;
   &amp;lt;OPTION [SELECTED] [VALUE=”string”]&amp;gt;listItem
   [...&amp;lt;OPTION [VALUE=”string”]&amp;gt;listItem
 &amp;lt;/SELECT&amp;gt;
&amp;lt;/FORM&amp;gt; &amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;length  (integer)
name  (string)
options[index]  (array)
options[index].defaultSelected  (Boolean)
options[index].index(integer)
options[index].value(string)
options[index].selected(Boolean)
options[index].text(string)
selectedIndex  (integer)
type   (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;blur()
focus()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onBlur=
onChange=
onFocus=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1811439504882039329?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1811439504882039329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1811439504882039329' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1811439504882039329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1811439504882039329'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/select-object.html' title='Select Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8604244026138879977</id><published>2010-10-26T11:08:00.001-07:00</published><updated>2010-10-26T11:08:57.891-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>String Object</title><content type='html'>&lt;h3&gt;String Object&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;var myString = new String(["stringExpression”])
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;length(integer)
prototype (expression)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;myString.anchor("anchorName”)
myString.big()
myString.blink()
myString.bold()
myString.charAt(index)
myString.fixed()
myString.fontcolor(colorValue)
myString.fontsize(integer1to7)
myString.indexOf(searchString [ , startIndex])
myString.italics()
myString.lastIndexOf(searchString [ , startIndex])
myString.link(locationOrURL)
myString.small()
myString.split("delimitingChar”)
myString.strike()
myString.sub()
myString.substring(beginIndex, endIndex)
myString.sup()
myString.toLowerCase()
myString.toUpperCase()
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8604244026138879977?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8604244026138879977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8604244026138879977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8604244026138879977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8604244026138879977'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/string-object.html' title='String Object'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7761061032060362719</id><published>2010-10-26T11:07:00.004-07:00</published><updated>2010-10-26T11:08:08.756-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Text, Textarea, and Password Objects</title><content type='html'>&lt;h3&gt;Text, Textarea, and Password Objects&lt;/h3&gt;
&lt;h4 &gt;Creating&lt;/h4&gt;

&lt;pre&gt;&amp;lt;FORM
 &amp;lt;INPUT
NAME=”fieldName”
TYPE=”text”
[MAXLENGTH=”MaxLengthAllowed”]
[SIZE=”NumberOfCharacters”]
[VALUE=”contents”]
[onBlur=”EventHandlerTextOrFunction”]
[onChange=”EventHandlerTextOrFunction”]
[onFocus=”EventHandlerTextOrFunction”]
[onSelect=”EventHandlerTextOrFunction”]&amp;gt;
&amp;lt;/FORM&amp;gt;

&amp;lt;FORM
 &amp;lt;TEXTAREA
COLS=”NumberOfColumns”
NAME=”fieldName”
ROWS=”NumberOfRows”
[WRAP=”off” | "virtual” | "physical”]
[onBlur=”EventHandlerTextOrFunction”]
[onChange=”EventHandlerTextOrFunction”]
[onFocus=”EventHandlerTextOrFunction”]
[onSelect=”EventHandlerTextOrFunction”]
defaultText
 &amp;lt;/TEXTAREA
   &amp;lt;/FORM&amp;gt;

   &amp;lt;FORM
&amp;lt;INPUT
   NAME=”fieldName”
   TYPE=”password”
   [MAXLENGTH=”MaxLengthAllowed”]
   [SIZE=”CharacterLength”]
   [VALUE=”contents”]&amp;gt;
   &amp;lt;/FORM&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;defaultValue  (string)
name (string)
value (string)
type  (string)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;blur()
focus()
select()
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onBlur=
onChange=
onFocus=
onSelect=
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7761061032060362719?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7761061032060362719/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7761061032060362719' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7761061032060362719'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7761061032060362719'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/text-textarea-and-password-objects.html' title='Text, Textarea, and Password Objects'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1236667809977351943</id><published>2010-10-26T11:07:00.003-07:00</published><updated>2010-10-26T11:07:47.601-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Window and Frame Objects</title><content type='html'>&lt;h3&gt;Window and Frame Objects&lt;/h3&gt;
&lt;h4&gt;Creating&lt;/h4&gt;

&lt;pre&gt;windowObject = window.open([parameters])

&amp;lt;BODY
   ...
   [onBlur=”EventHandlerTextOrFunction”]
   [onFocus=”EventHandlerTextOrFunction”]
   [onLoad=”EventHandlerTextOrFunction”]
   [onUnLoad=”EventHandlerTextOrFunction”]
   &amp;lt;/BODY&amp;gt;

   &amp;lt;FRAMESET
   COLS=”valueList”
   ROWS=”valueList”
   [BORDER=pixelSize]
   [BORDERCOLOR=colorSpecs]
   [FRAMEBORDER=YES | NO]
   [onBlur=”EventHandlerTextOrFunction”]
   [onFocus=”EventHandlerTextOrFunction”]
   [onLoad=”EventHandlerTextOrFunction”]
   [onUnLoad=”EventHandlerTextOrFunction]
&amp;lt;FRAME
SRC=”locationOrURL”
NAME=”firstFrameName”
[BORDER=pixelsize]
[BORDERCOLOR=colorSpecs]
....
   &amp;lt;/FRAMESET&amp;gt;
&lt;/pre&gt;

&lt;h4 &gt;Properties&lt;/h4&gt;

&lt;pre&gt;defaultStatus  (string)
frames (array)
name (string)
onerror(function)
opener (window object)
parent (window object)
self   (window object)
status (window object)
top(window object)
window (window object)
&lt;/pre&gt;

&lt;h4 &gt;Methods&lt;/h4&gt;

&lt;pre&gt;alert(message)
blur()
clearTimeout(timeoutIDnumber)
close()
confirm(message)
focus()
open("URL”,"windowName”[,,”windowSpecification”])
prompt(message,defaultReply)
scroll(horizontalPixel, verticalPixel)
setTimeout("expression”, millisecondsDelay)
&lt;/pre&gt;

&lt;h4 &gt;Event Handlers&lt;/h4&gt;

&lt;pre&gt;onBlur=
onFocus=
onLoad=
onUnload=
&lt;/pre&gt;

&lt;h4 &gt;Control Structures&lt;/h4&gt;

&lt;pre&gt;   if (condition)= {
 statements
   }

   if (condition)= {
 statements
}
else {
 statements
}

variable = (condition) ? val1 : val2

for ( [ initial expression]; [condition]; [update expression]){
 statements
}

while (condition) {
 statements
}

for (var in object) {
 statements
}

with (object) {
 statements
}
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1236667809977351943?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1236667809977351943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1236667809977351943' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1236667809977351943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1236667809977351943'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/window-and-frame-objects.html' title='Window and Frame Objects'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-434954522753231306</id><published>2010-10-26T11:07:00.001-07:00</published><updated>2010-10-26T11:07:24.778-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Objects'/><title type='text'>Operators</title><content type='html'>&lt;h3&gt;Operators&lt;/h3&gt;
&lt;h4 &gt; Comparison&lt;/h4&gt;

&lt;pre&gt;== Equals
!= Does not equal
&amp;gt;  Is greater than
&amp;gt;= Is greater than or equal to
&amp;lt;  Is less than
&amp;lt;= Is less than or equal to
&lt;/pre&gt;

&lt;h4 &gt; Binary &amp;amp; Unary&lt;/h4&gt;

&lt;pre&gt;+  Plus
–  Minus
*  Multiply
/  Divide
%  Modulo
++ Increment
-- Decrement
-val   Negation
&lt;/pre&gt;

&lt;h4 &gt;Assignment&lt;/h4&gt;

&lt;pre&gt;=  Equals
+= Add the RHS (Right Hand Side)
–= Subtract the RHS
*= Multiply by the RHS
/= Divide by the RHS
%= Modulo by the RHS
&amp;lt;&amp;lt;=Left shift by the RHS
&amp;gt;&amp;gt;=Right shift by the RHS
&amp;gt;&amp;gt;&amp;gt;=   Right shift by the RHS, zero fill
&amp;amp;= Bitwise AND by the RHS
|= Bitwise OR by the RHS
^= Bitwise XOR by the RHS
&lt;/pre&gt;

&lt;h4&gt;Boolean&lt;/h4&gt;

&lt;pre&gt;&amp;amp;&amp;amp; And
|| Or
!  Not
&lt;/pre&gt;

&lt;h4 &gt; Bitwise&lt;/h4&gt;

&lt;pre&gt;&amp;amp;  Bitwise And
|  Bitwise Or
^  Bitwise XOR
~  Bitwise Not
&amp;lt;&amp;lt; Left Shift
&amp;gt;&amp;gt; Right Shift
&amp;gt;&amp;gt;&amp;gt;  Zero Fill Right Shift
&lt;/pre&gt;

&lt;h4&gt;Miscellaneous&lt;/h4&gt;

&lt;pre&gt;new
typeOf
void
&lt;/pre&gt;

&lt;h4 &gt;JavaScript Functions and
Methods&lt;/h4&gt;

&lt;pre&gt;eval("string”)
isNan(expression)
object.toString()
parseFloat("string”)
parseInt("string”)
taint([object])
untaint([object])&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-434954522753231306?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/434954522753231306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=434954522753231306' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/434954522753231306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/434954522753231306'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/operators.html' title='Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2112519873975587639</id><published>2010-10-01T08:46:00.003-07:00</published><updated>2010-11-27T08:53:06.282-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date object'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Redirect Example</title><content type='html'>&lt;h5&gt;Javascript Redirect Example&lt;/h5&gt;
&lt;p&gt;
Here is example:&lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;Javascript Redirect Example 
      &amp;lt;/title&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt; &lt;br&gt; &amp;lt;script&amp;gt;&lt;br&gt;
      function redirect()&lt;br&gt;
      {&lt;br&gt;
        location.href = &amp;quot;http://javascript-lesson-blogspot.com&amp;quot;;&lt;br&gt;
      }&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;body onload=&amp;quot;setTimeout('redirect()', 
      5000)&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;

&lt;p&gt;
&lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date1.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript Data application"&gt;Examine 
this javacript example&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;

[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods-example.html" title="Date Object Methods Example"&gt;Javascript Date Object Methods Example&lt;/a&gt;  ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods.html" title="Date Object Methods"&gt;Javascript Date Object Methods&lt;/a&gt; ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-date-object.html" title="Date object"&gt;Javascript Date object&lt;/a&gt;  ] 
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2112519873975587639?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2112519873975587639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2112519873975587639' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2112519873975587639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2112519873975587639'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/redirect-example.html' title='Redirect Example'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7442059870655788801</id><published>2010-10-01T08:46:00.001-07:00</published><updated>2010-11-27T08:52:58.058-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date object'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Date Object Methods Example</title><content type='html'>&lt;h5&gt;Javascript Date Object Methods Example &lt;/h5&gt;
&lt;p&gt;
Here is example :&lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; &amp;lt;html&amp;gt; &lt;br&gt;
   &amp;lt;head&amp;gt; &lt;br&gt; &amp;lt;title&amp;gt; Date Object Methods 
      Example &amp;lt;/title&amp;gt; &lt;br&gt; &amp;lt;/head&amp;gt; &lt;br&gt; &amp;lt;body&amp;gt; &lt;br&gt; &amp;lt;h3&amp;gt;Date 
      Object Methods Example &amp;lt;/h3&amp;gt; &lt;br&gt; &amp;lt;script language=&amp;quot;JavaScript&amp;quot;&amp;gt; 
      &lt;br&gt;
      var calendar = new Date() &lt;br&gt;
      document.write(&amp;quot;&amp;lt;b&amp;gt;Zaman&amp;lt;/b&amp;gt;: &amp;quot; + calendar) &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getFullYear&amp;lt;/b&amp;gt;: &amp;quot; + 
      calendar.getFullYear()) &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getDate&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getDate()) 
      &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getMonth&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getMonth()) 
      &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getHours&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getHours()) 
      &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getMinutes&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getMinutes()) 
      &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getSeconds&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getSeconds()) 
      &lt;br&gt;
      document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;getDay&amp;lt;/b&amp;gt;: &amp;quot; + calendar.getDay()) 
      &lt;br&gt; &amp;lt;/script&amp;gt; &lt;br&gt; &amp;lt;/body&amp;gt; &lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript data application"&gt;Examine this javacript example&lt;/a&gt;&lt;/p&gt;





&lt;p&gt;
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/redirect-example.html" title="Redirect Example"&gt;Javascript Redirect Example&lt;/a&gt; ] 

[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods.html" title="Date Object Methods"&gt;Javascript Date Object Methods&lt;/a&gt; ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-date-object.html" title="Date object"&gt;Javascript Date object&lt;/a&gt;  ] 
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7442059870655788801?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7442059870655788801/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7442059870655788801' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7442059870655788801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7442059870655788801'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/date-object-methods-example.html' title='Date Object Methods Example'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-477040631250430335</id><published>2010-10-01T08:43:00.001-07:00</published><updated>2010-10-01T08:51:01.114-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date object'/><title type='text'>The Date Object Methods</title><content type='html'>&lt;h5&gt;Javascript The Date Object Methods&lt;/h5&gt;
&lt;table width="350" border="1" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC"&gt;
  &lt;tr&gt; 
    &lt;td&gt;Methods&lt;/td&gt;
    &lt;td&gt;Explanation &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;Date()&lt;/td&gt;
    &lt;td&gt;Returns a new Date object&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getDate()&lt;/td&gt;
    &lt;td&gt; Returns the date from a Date object. (1-31)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getDay() &lt;/td&gt;
    &lt;td&gt;Returns the weekday. (0-6)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getMonth() &lt;/td&gt;
    &lt;td&gt;Returns the month. (0-11) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getFullYear()&lt;/td&gt;
    &lt;td&gt; Returns the year. (2000) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getYear()&lt;/td&gt;
    &lt;td&gt; Returns the year as a 4 digit value (or the year as a 2 digit value if 
      the date is before January 1, 2000). Use getFullYear instead !!&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getHours()&lt;/td&gt;
    &lt;td&gt; Returns the hour as a value between 0 and 23&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getMinutes()&lt;/td&gt;
    &lt;td&gt; Returns the minute. (0-59)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getSeconds() &lt;/td&gt;
    &lt;td&gt; Returns the second. (0-59) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getMilliseconds()&lt;/td&gt;
    &lt;td&gt; Returns the millisecond. (0-999)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getTime() &lt;/td&gt;
    &lt;td&gt;Retuns the number of milliseconds since 1/1-1970&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getTimezoneOffset() &lt;/td&gt;
    &lt;td&gt; Returns the time difference between the user's computer and GMT &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCDate()&lt;/td&gt;
    &lt;td&gt; Returns the date as set by the World Time Standard, UTC = Universal Coordinated 
      Time. To return the local time use the getDate method&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCDay()&lt;/td&gt;
    &lt;td&gt;Returns the UTC day&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCMonth()&lt;/td&gt;
    &lt;td&gt;Returns the UTC month &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCFullYear()&lt;/td&gt;
    &lt;td&gt;Returns the UTC 4 digit year&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCHourc()&lt;/td&gt;
    &lt;td&gt;Returns the UTC hour &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCMinutes()&lt;/td&gt;
    &lt;td&gt; Returns the UTC minutes&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;Returns the UTC seconds&lt;/td&gt;
    &lt;td&gt;Returns the UTC seconds&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;getUTCMilliseconds()&lt;/td&gt;
    &lt;td&gt; Returns the UTC milliseconds &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;parse()&lt;/td&gt;
    &lt;td&gt; Returns a string date value into how many milliseconds since 1/1-1970. 
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setDate()&lt;/td&gt;
    &lt;td&gt; Sets a new date into the Date object&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; setFullYear() &lt;/td&gt;
    &lt;td&gt; Sets a new year into the Date object &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; setHours()&lt;/td&gt;
    &lt;td&gt; Sets a new hour into the Date object. (0-23) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setMilliseconds()&lt;/td&gt;
    &lt;td&gt; Sets new milliseconds into the Date object. (0-999)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; setMinutes()&lt;/td&gt;
    &lt;td&gt; Sets mew minutes hour into the Date object. (0-59) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setMonth()&lt;/td&gt;
    &lt;td&gt; Sets a new month into the Date object. (0-11)&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setSeconds()&lt;/td&gt;
    &lt;td&gt;Sets new seconds into the Date object. (0-59) &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setTime()&lt;/td&gt;
    &lt;td&gt;Sets milliseconds after 1/1-1970 &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setYear()&lt;/td&gt;
    &lt;td&gt;Sets a new year into the Date object &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCDate()&lt;/td&gt;
    &lt;td&gt;Sets The UTC date&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCDay()&lt;/td&gt;
    &lt;td&gt;Sets The UTC date &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCMonth()&lt;/td&gt;
    &lt;td&gt; Sets The UTC date &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCFullYear()&lt;/td&gt;
    &lt;td&gt; Sets The UTC date&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCHourc()&lt;/td&gt;
    &lt;td&gt;Sets The UTC date&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCMinutes()&lt;/td&gt;
    &lt;td&gt; Sets The UTC date &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCSeconds()&lt;/td&gt;
    &lt;td&gt; Sets The UTC date &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;setUTCMilliseconds()&lt;/td&gt;
    &lt;td&gt; Sets The UTC date&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt; toGMTString() &lt;/td&gt;
    &lt;td&gt; Returns a string date value. &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;toLocaleString() &lt;/td&gt;
    &lt;td&gt; Returns a string date value.&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
    &lt;td&gt;toString()&lt;/td&gt;
    &lt;td&gt; Returns a string date value.&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;



&lt;p&gt;
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/redirect-example.html" title="Redirect Example"&gt;Javascript Redirect Example&lt;/a&gt; ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods-example.html" title="Date Object Methods Example"&gt;Javascript Date Object Methods Example&lt;/a&gt;  ] 
 
[ &lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-date-object.html" title="Date object"&gt;Javascript Date object&lt;/a&gt;  ] 
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-477040631250430335?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/477040631250430335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=477040631250430335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/477040631250430335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/477040631250430335'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/10/date-object-methods.html' title='The Date Object Methods'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5980102803877837731</id><published>2010-08-23T06:45:00.002-07:00</published><updated>2010-11-27T08:52:45.968-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Variable'/><title type='text'>Rules for Javascript Variable names</title><content type='html'>&lt;h5&gt;Javascript Rules for Javascript Variable names: &lt;/h5&gt;
 &lt;p&gt; 1. Must begin with a letter. Variable name cannot start with a numeral.&lt;br&gt;
  2. Can not contain a period (.) &lt;br&gt;
  3. Must not exceed 255 characters &lt;br&gt;
  4. JavaScript variable names are case-sensitive&lt;br&gt;
  5. JavaScript variable names must not contain spaces.&lt;/p&gt;
&lt;p&gt;Valid variable names&lt;/p&gt;
  my_name&lt;br&gt;
  total2&lt;br&gt;
  _total&lt;br&gt;
  Average&lt;/p&gt;
&lt;p&gt;Invalid variable names&lt;/p&gt;
&lt;p&gt;
my.name&lt;br&gt;
  2_ total &lt;br&gt;
  rate%_ Average &lt;/p&gt;
&lt;p&gt;Notice : Variables can be either Global, or Local.Variables that exist throughout 
  the script are called Global variables. Variables that exist only inside a function 
  are called Local variables.&lt;/p&gt;
&lt;p&gt;Here is Example : &lt;/p&gt;

&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
      var high = 15; //GLOBAL Variable&lt;br&gt;
      function circle( ) {&lt;br&gt;
      basic = 14; //GLOBAL Variable&lt;br&gt;
      crcl = 0.5*(basic + high);&lt;br&gt;
      return crcl;&lt;br&gt;
      }&lt;br&gt;
      function total ( ) {&lt;br&gt;
      var corner = 6.8; //LOCAL Variable&lt;br&gt;
      ttl = 2*corner + basic;&lt;br&gt;
      return ttl;&lt;br&gt;
      }&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5980102803877837731?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5980102803877837731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5980102803877837731' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5980102803877837731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5980102803877837731'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/08/rules-for-javascript-variable-names.html' title='Rules for Javascript Variable names'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7572654208690346604</id><published>2010-08-23T06:45:00.001-07:00</published><updated>2010-11-27T08:52:35.504-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Variable'/><title type='text'>Types of Javascript Variables</title><content type='html'>&lt;h5&gt;Javascript Types of Javascript Variables&lt;/h5&gt;
&lt;p&gt;Number: an integer or a floating-point number.&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  var cost=9.95;&lt;br&gt;
  var mycars=3;&lt;/div&gt;

&lt;p&gt;
String: Letters, numbers 
&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var bestmovie=&amp;quot;The Lost World&amp;quot;;&lt;br&gt;
  var mycars=”3”;&lt;/div&gt;

&lt;p&gt;
Boolean: A logical true or false value.&lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  var result=true; &lt;/div&gt;

&lt;p&gt;
Null: Consists of a value, null.&lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  var mycar=null;&lt;/div&gt;
&lt;p&gt; 
  Undefined: A variable that has not been given a value yet&lt;/p&gt;
&lt;p&gt; Arrays&lt;/p&gt;
&lt;p&gt; Sometimes you want to assign more than one value to a single variable. Then 
  you can create a variable that can contain a series of values. This is called 
  an array variable.&lt;/p&gt;
&lt;p&gt; Here is an example;
&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  Name = new Array(4); &lt;br&gt;
      Name[0] = &amp;quot;Janson&amp;quot;&lt;br&gt;
      Name[1] = &amp;quot;Jack&amp;quot;&lt;br&gt;
      Name[2] = &amp;quot;mary&amp;quot;&lt;br&gt;
  Name[3] = &amp;quot;hillary&amp;quot;&lt;/div&gt;
&lt;p&gt;
The same array can also be declared at the sametime values are assigned as follows: 
&lt;/p&gt;
  
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  Name = new Array(' Janson', ' Jack', ' Mary', ' Hillary ')&lt;/div&gt;
 
&lt;p&gt;
printing: &lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  document.write(Name[1][2]) &lt;/div&gt;
&lt;p&gt;Display: Jackmary&lt;/p&gt;
&lt;p&gt;
The data can be retrieved from any element using an index into the particular 
array element you want. &lt;/p&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  mother = names[3]&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7572654208690346604?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7572654208690346604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7572654208690346604' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7572654208690346604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7572654208690346604'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/08/types-of-javascript-variables.html' title='Types of Javascript Variables'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5929339274955917238</id><published>2010-07-12T14:08:00.003-07:00</published><updated>2010-11-27T08:51:56.086-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Placing Code'/><title type='text'>Scripts in the Head</title><content type='html'>&lt;h5&gt;Scripts in the Head&lt;/h5&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 

 
&amp;lt;html&amp;gt;&lt;br&gt; &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt; Javascript Document&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;script type=”text/javascript”&amp;gt;&lt;br&gt;
      //script statement(s) here&lt;br&gt;
      ...&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt; 
      &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5929339274955917238?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5929339274955917238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5929339274955917238' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5929339274955917238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5929339274955917238'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/07/scripts-in-head.html' title='Scripts in the Head'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7552363086170047530</id><published>2010-07-12T14:08:00.001-07:00</published><updated>2010-11-27T08:51:49.408-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Placing Code'/><title type='text'>Scripts in the Head and Body</title><content type='html'>&lt;h5&gt;Scripts in the Head and Body&lt;/h5&gt;

&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 

&amp;lt;html&amp;gt;&lt;br&gt; &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;Javascript Document&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;script type=”text/javascript”&amp;gt;&lt;br&gt;
      //script statement(s) here&lt;br&gt;
      ...&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;script 
      type=”text/javascript”&amp;gt;&lt;br&gt;
      //script statement(s) here&lt;br&gt;
      ...&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt; &amp;lt;/html&amp;gt;&lt;br&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7552363086170047530?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7552363086170047530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7552363086170047530' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7552363086170047530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7552363086170047530'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/07/scripts-in-head-and-body.html' title='Scripts in the Head and Body'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1905852761883852618</id><published>2010-07-12T14:06:00.002-07:00</published><updated>2010-11-27T08:51:41.257-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Placing Code'/><title type='text'>A Script in the Body</title><content type='html'>&lt;h5&gt;A Script in the Body&lt;/h5&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 

 &amp;lt;html&amp;gt;&lt;br&gt; &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt; Javascript Document&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;script type=”text/javascript”&amp;gt;&lt;br&gt;
      //script statement(s) here&lt;br&gt;
      ...&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt; &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1905852761883852618?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1905852761883852618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1905852761883852618' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1905852761883852618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1905852761883852618'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/07/script-in-body.html' title='A Script in the Body'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7044692488320799171</id><published>2010-07-12T14:06:00.001-07:00</published><updated>2010-11-27T08:51:11.707-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Placing Code'/><title type='text'>Placing JavaScript code in another file</title><content type='html'>&lt;h4&gt;Placing JavaScript code in another file&lt;/h4&gt;

&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 

&amp;lt;html&amp;gt;&lt;br&gt; &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt; Javascript Document&amp;lt;/title&amp;gt;&lt;br&gt; 
      &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;script type=”text/javascript” src=”scripts/javafile.js”&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt; 
      &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt; &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7044692488320799171?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7044692488320799171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7044692488320799171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7044692488320799171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7044692488320799171'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/07/placing-javascript-code-in-another-file.html' title='Placing JavaScript code in another file'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2996310697524466927</id><published>2010-06-29T10:32:00.001-07:00</published><updated>2010-06-29T10:32:11.426-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>Break / Continue</title><content type='html'>&lt;h5&gt;Javascript Break / Continue&lt;/h5&gt;
&lt;p&gt;The break and continue statements provide stricter control over the execution 
of code in a loop.&lt;/p&gt;
&lt;p&gt;The break statement may be used to break out of a while, if, switch, do while, 
  or for statement. &lt;/p&gt;
&lt;p&gt;The continue statement does not terminate the loop statement.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2996310697524466927?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2996310697524466927/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2996310697524466927' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2996310697524466927'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2996310697524466927'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/break-continue.html' title='Break / Continue'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1076497842336073168</id><published>2010-06-29T10:31:00.005-07:00</published><updated>2010-11-27T08:51:02.048-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>The If….else statement</title><content type='html'>&lt;h5&gt;Javascript The If….else statement&lt;/h5&gt;
&lt;p&gt;The if statement has the following syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
          &amp;lt;!--&lt;br&gt;
          if (condition)&lt;br&gt;
          { &lt;br&gt;
          statement1&lt;br&gt;
          } else { &lt;br&gt;
          statement2&lt;br&gt;
          } &lt;br&gt;
          --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is Example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
          &amp;lt;!--&lt;br&gt;
          if (value == 10)&lt;br&gt;
          {&lt;br&gt;
          document.write(&amp;quot;Value is ten&amp;quot;)&lt;br&gt;
          }&lt;br&gt;
          else&lt;br&gt;
          {&lt;br&gt;
          document.write(&amp;quot;Value is not Ten&amp;quot;)&lt;br&gt;
          }&lt;br&gt;
          --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
  If the condition evaluates to true, statement1 is executed; if the condition 
  evaluates to false, statement2 is executed. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1076497842336073168?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1076497842336073168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1076497842336073168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1076497842336073168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1076497842336073168'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/ifelse-statement.html' title='The If….else statement'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4786572203785920921</id><published>2010-06-29T10:31:00.003-07:00</published><updated>2010-11-27T08:50:48.673-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>Switch Condition</title><content type='html'>&lt;h5&gt;Javascript Switch Condition &lt;/h5&gt;
 &lt;p&gt;You should use the this statement if you want to select one of many blocks of 
code to execute. &lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
          &amp;lt;!--&lt;br&gt;
          switch(expression)&lt;br&gt;
          {&lt;br&gt;
          case label1:&lt;br&gt;
          statement1;&lt;br&gt;
          break;&lt;br&gt;
          case label2:&lt;br&gt;
          statement2;&lt;br&gt;
          break;&lt;br&gt;
          …….&lt;br&gt;
          default: statement;&lt;br&gt;
          }&lt;br&gt;
          --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
      &lt;br&gt;var carModel = &amp;quot;Focus&amp;quot;;&lt;br&gt;
      &lt;br&gt;switch (carModel)&lt;br&gt;
        {&lt;br&gt;
        case &amp;quot;Golf&amp;quot; :&lt;br&gt;
        document.write (&amp;quot;Manufactured by Wolsvagen&amp;quot;);&lt;br&gt;
        break;&lt;br&gt;
      &lt;br&gt; case &amp;quot;civic&amp;quot; :&lt;br&gt;
        document.write (&amp;quot;Manufactured by Honda&amp;quot;);&lt;br&gt;
        break;&lt;br&gt;
      &lt;br&gt; case &amp;quot;Focus&amp;quot; :&lt;br&gt;
        document.write (&amp;quot;Manufactured by Ford&amp;quot;);&lt;br&gt;
        break;&lt;br&gt;
      &lt;br&gt; default :&lt;br&gt;
        document.write (&amp;quot;Unknown Car Model&amp;quot;);&lt;br&gt;
        break;&lt;br&gt;
        }&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4786572203785920921?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4786572203785920921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4786572203785920921' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4786572203785920921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4786572203785920921'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/switch-condition.html' title='Switch Condition'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6342960181604087450</id><published>2010-06-29T10:31:00.001-07:00</published><updated>2010-11-27T08:50:34.626-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>do-while</title><content type='html'>&lt;h5&gt;Javascript do-while&lt;/h5&gt;
&lt;p&gt;The body of the loop is always executed at least once before the expression is 
evaluated. &lt;/p&gt;
&lt;p&gt;Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        do &lt;br&gt;
        { statement1;&lt;br&gt;
        Statement2,} &lt;br&gt;
        while (condition)&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;Script Language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        var Number = 5;&lt;br&gt;
        do {&lt;br&gt;
        document.write(&amp;quot;Number &amp;quot; + Number + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);&lt;br&gt;
        Number++;&lt;br&gt;
        }while(Number &amp;lt;= 12)&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/Script&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6342960181604087450?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6342960181604087450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6342960181604087450' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6342960181604087450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6342960181604087450'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/do-while.html' title='do-while'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6694510187467106114</id><published>2010-06-29T10:30:00.004-07:00</published><updated>2010-11-27T08:50:18.723-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>while</title><content type='html'>&lt;h5&gt;Javascript while&lt;/h5&gt;
&lt;p&gt;The evaluation of the escape condition is done before the code inside the loop 
has been executed.&lt;/p&gt;&lt;p&gt;
Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        while (condition) &lt;br&gt;
        { statement1;&lt;br&gt;
        Statement2,} &lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is example :&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;Script Language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        var Number = 5;&lt;br&gt;
        while(Number &amp;lt;= 12)&lt;br&gt;
        {&lt;br&gt;
        document.write(&amp;quot;Number &amp;quot; + Number + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);&lt;br&gt;
        Number++;&lt;br&gt;
        }&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/Script&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6694510187467106114?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6694510187467106114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6694510187467106114' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6694510187467106114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6694510187467106114'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/while.html' title='while'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6187671582937747509</id><published>2010-06-29T10:30:00.003-07:00</published><updated>2010-11-27T08:50:05.615-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>For</title><content type='html'>&lt;h5&gt;Javascript For&lt;/h5&gt;
&lt;p&gt;The for statement will execute a block of code a specified number of times &lt;/p&gt;&lt;p&gt;
Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        for (initialization; condition; increment) &lt;br&gt;
        { statement1;&lt;br&gt;
        Statement2,} &lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        for (var i=0; i &amp;lt; iCount; i++)&lt;br&gt;
        {&lt;br&gt;
        alert(i);&lt;br&gt;
        }&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;This code defines a variable i that begins with the value 0. The for loop 
  is entered only if the conditional expression (i &amp;lt; iCount) evaluates to true,&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6187671582937747509?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6187671582937747509/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6187671582937747509' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6187671582937747509'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6187671582937747509'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/for.html' title='For'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-9168484732050736581</id><published>2010-06-29T10:30:00.001-07:00</published><updated>2010-11-27T08:49:48.934-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>for-in</title><content type='html'>&lt;h5&gt;Javascript for-in&lt;/h5&gt;
&lt;p&gt;The for-in statement is a strict iterative statement. It is used to enumerate 
the properties of an object.&lt;/p&gt;
&lt;p&gt;Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        for (property in expression) statement&lt;br&gt;
        --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;
Here is example:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br&gt;
   &amp;lt;!--&lt;br&gt;
      for (sProp in window) {&lt;br&gt;
      alert(sProp);&lt;br&gt;
      }&lt;br&gt;
      --&amp;gt;&lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;p&gt;Here, the for-in statement is used to display all the properties of the BOM 
  window object. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-9168484732050736581?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/9168484732050736581/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=9168484732050736581' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9168484732050736581'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9168484732050736581'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/06/for-in.html' title='for-in'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-9086770161194048500</id><published>2010-04-22T12:11:00.000-07:00</published><updated>2010-04-22T12:27:53.162-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Anchor-AJAX-ActiveX-Attribute-Array-Arguments-Anchors</title><content type='html'>&lt;div align="center"&gt; a &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;

&lt;h5&gt;Glossary Terms&lt;/h5&gt;
&lt;p&gt;&lt;strong&gt;Anchors&lt;/strong&gt;; The anchors array contains all of the anchor objects 
  defined for the web page. This is not a reserved word so you can declare your 
  own variable or function called anchors but if you do then you will not be able 
  to reference the anchors on the web page via this class.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Argument&lt;/strong&gt;; An Argument is a variable used by a function that 
  has been passed to that function. The values for the arguments are passed as 
  parameters when the function is called. The arguments are listed between parentheses 
  immediately following the function name in the function declaration. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Arguments&lt;/strong&gt;; The arguments array is available within any function. 
  It contains all of the arguments passed to the function and can therefore be 
  used to process the arguments independently of their assigned names. It can 
  even be used to determine how many arguments were passed. This is not a reserved 
  word so you can declare your own variable or function called arguments but if 
  you do then you will not be able to use the arguments array.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Array&lt;/strong&gt;; The Array class is used to define a collection of variables 
  that are related together. You can then refer to the individual variables within 
  the array either by their position in the array eg myEntry[3] to access the 
  fourth entry (the first entry is 0) or by name eg myEntry[red]. This is not 
  a reserved word so you can declare your own variable or function called Array 
  but if you do then you will not be able to use the Array class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Asynchronous&lt;/strong&gt;; An asynchronous command is one that starts a 
  process and then returns straight away without waiting for that process to complete.&lt;/p&gt;
&lt;p&gt;The most obvious examples of Javascript functions that are asynchronous are 
  setTimeout and setInterval. These functions start a timer that will execute 
  a specified command at some future time and then immediately return control 
  without waiting for the timer to actually trigger the command specified. The 
  value returned by these functions provides a means of referencing the request 
  in subsequent code.&lt;/p&gt;
&lt;p&gt;Another Javascript function that can be called asynchronously is the XMLHttpRequest 
  function which submits a request for information back to the server. This function 
  does not wait for a reply back from the server but instead returns immediately 
  and allows the following code to run immediately. Again a reference to the request 
  is returned and it is by attaching a callback function to the returned object 
  that we can detect and handle the information from the server when it is eventually 
  received.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Attribute&lt;/strong&gt; ; An Attribute is part of an HTML tag that has a 
  value. It is used to define the properties associated with that individual tag.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ActiveX&lt;/strong&gt;; ActiveX is a proprietary addon to Javascript provided 
  by Microsoft in the various versions of Internet Explorer. Its purpose is to 
  allow those companies using IE for their intranet to allow Javascript to access 
  information from the computer itself. Microsoft recommend that anyone running 
  Internet Explorer on the internet have activeX turned off since web pages do 
  not know how your computer is configured and such access can lead to major problems 
  with viruses and spyware.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AJAX&lt;/strong&gt;; AJAX (Asynchronous Javascript And XML) is a new method 
  of combining client side programming in Javascript with server side processing 
  that can deliver XML fragments back to your web page to allow the page to be 
  updated with new information from the server without having to reload the entire 
  web page. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Anchor&lt;/strong&gt;; An Anchor object is automatically created for each 
  of the anchor points on a web page (ie. all &amp;lt;a name=&amp;quot;anchorname&amp;quot; 
  id=&amp;quot;anchorname&amp;quot;&amp;gt;). This is not a reserved word so you can declare 
  your own variable or function called Anchor but if you do then you will not 
  be able to access the anchors on the page from Javascript&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-9086770161194048500?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/9086770161194048500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=9086770161194048500' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9086770161194048500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9086770161194048500'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html' title='Anchor-AJAX-ActiveX-Attribute-Array-Arguments-Anchors'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1755834046318256978</id><published>2010-04-21T11:18:00.000-07:00</published><updated>2010-04-22T12:24:26.470-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Byte-Button-Browser-Break-Boolean-Bookmarklet-Blur</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  b &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Blur&lt;/strong&gt;; The blur method is used to remove the focus (ie make 
  non-current) the object that it belongs to. Giving a text field the blur will 
  move the cursor to the next field. Giving a window the blur will move it behind 
  all of the others. This is not a reserved word so you can declare your own variable 
  or function called blur but if you do then you will not be able to use this 
  method to control which object is current.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bookmarklet&lt;/strong&gt;; A Bookmarklet is a small Javascript (under 500 
  characters) that is accessed from the bookmarks or favorites menu instead of 
  being linked directly into a web page. This allows the Javascript to be run 
  against any web page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Boolean&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. boolean is one the data types 
  that would have been able to be explicitly defined. To allow for this boolean 
  was a reserved word. The plan to allow specific data types in Javascript no 
  longer exists and boolean is therefore no longer on the reserved word list in 
  the latest standards. Since many people still use earlier browsers where this 
  was defined as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Break&lt;/strong&gt;; The break statement terminates execution of a block 
  of code earlier than normal. It either breaks out of the closest block of code 
  if by itself or it can break out of a labelled block at a higher level by specifying 
  the name of the block to break out of. The most common use for the break statement 
  is within a switch block where it is used to break out of the switch block after 
  the appropriate code for the matching case has been run. Break is a reserved 
  word and cannot be used for anything other than declaring a break statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Browser&lt;/strong&gt;; A web Browser is a program used to display web pages. 
  The browser interprets the instructions on how the web page should be displayed. 
  Browsers als determine whether Javascript attached to web pages can be run and 
  also interpret the Javascript commands. Some examples of modern browsers include 
  Netscape, Firefox, Opera, and Konquerer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Button&lt;/strong&gt;; The Button object is used to access buttons within 
  forms from Javascript. This is not a reserved word so you can declare your own 
  variable or function called button but if you do then you will not be able to 
  properly process any forms that contain buttons on your page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Byte&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. byte is one the data types 
  that would have been able to be explicitly defined. To allow for this byte was 
  a reserved word. The plan to allow specific data types in Javascript no longer 
  exists and byte is therefore no longer on the reserved word list in the latest 
  standards. Since many people still use earlier browsers where this was defined 
  as a reserved word you should avoid using it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1755834046318256978?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1755834046318256978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1755834046318256978' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1755834046318256978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1755834046318256978'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html' title='Byte-Button-Browser-Break-Boolean-Bookmarklet-Blur'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8183964652449803915</id><published>2010-04-20T10:28:00.000-07:00</published><updated>2010-04-22T12:24:14.845-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Constructor-Confirm-Concatenate-Closed-clearTimeout -ClearInterval-Class-Checkbox-Char-Catch-Cascading StyleSheets</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  c &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Cascading StyleSheets&lt;/strong&gt;; Cascading StyleSheets are used to define 
  the appearance of the web page. The stylesheet defines which fonts should be 
  used, how much space to leave around particular objects on the page, where the 
  objects should be placed on the page, and just about anything else to do with 
  the appearance of the web page. The stylesheet can be modified using Javascript 
  via the Document Object Model.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Case&lt;/strong&gt;; The case clause within a switch statement specifies 
  one of the values that the switch statement can evaluate to. If the switch statement 
  evaluates to this particular case value then the statements following the case 
  label will be run. Case is a reserved word and cannot be used for anything other 
  than declaring a case within a switch statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Catch&lt;/strong&gt;; The catch statement defines a block of code that will 
  provide special error processing for a specified error if it occurred in the 
  immediately preceding try block. Catch is a reserved word and cannot be used 
  for anything other than declaring an error handler for a try block.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Char&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. char is one the data types 
  that would have been able to be explicitly defined. To allow for this char was 
  a reserved word. The plan to allow specific data types in Javascript no longer 
  exists and char is therefore no longer on the reserved word list in the latest 
  standards. Since many people still use earlier browsers where this was defined 
  as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Checkbox&lt;/strong&gt;; The Checkbox object is used to access checkboxes 
  within forms from Javascript. This is not a reserved word so you can declare 
  your own variable or function called checkbox but if you do then you will not 
  be able to properly process any forms that contain checkboxes on your page from 
  Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Class&lt;/strong&gt;; Class is an term used in object oriented programing 
  to indicate the type of object. For example 1 is a number so it belongs to the 
  number class, today is a date so it belongs to the date class.&lt;/p&gt;
&lt;p&gt;A class also has methods attached to it which define how the properties of 
  objects belonging to the calss may be manipulated.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ClearInterval&lt;/strong&gt;; The clearInterval method is available on window 
  objects. It is used to clear a delay to a function that was set using setInterval(). 
  This is not a reserved word so you can declare your own variable or function 
  called clearInterval but if you do then you will not be able to use the method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ClearTimeout&lt;/strong&gt;; The clearTimeout method is available on window 
  objects. It is used to clear a delay to a function that was set using setTimeout(). 
  This is not a reserved word so you can declare your own variable or function 
  called clearTimeout but if you do then you will not be able to use the method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Client&lt;/strong&gt;; You will often find references to client side processing 
  or client computer. In either case what is being referred to is the computer 
  at the home or workplace of the person who is accessing the internet. The client 
  computer is the one where the web browser and Javascript is run.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Close&lt;/strong&gt;; The close method is usually used with windows objects 
  to close the browser window. This is not a reserved word so you can declare 
  your own variable or function called close but if you do then you will not be 
  able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Closed&lt;/strong&gt;; The closed property is usually used with windows objects 
  to test if the browser window is open or not. This is not a reserved word so 
  you can declare your own variable or function called closed but if you do then 
  you will not be able to use this property.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Concatenate&lt;/strong&gt;; Concatenate means to join together. This term 
  is usually used in reference to joining pieces of text together into a larger 
  piece of text.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Confirm&lt;/strong&gt;; The confirm function that is predefined for use in 
  Javascript is similar to the alert function in that it will display a popup 
  message on the screen. The difference with confirm is that as well as the OK 
  button there is also a Cancel button. One of these needs to be selected to make 
  the message disappear. The confirm function will return true if the OK button 
  is selected and false if the Cancel button is selected allowing different actions 
  to be taken depending on which button is selected. This is not a reserved word 
  so you can declare your own variable or function called confirm but if you do 
  then you will not be able to use the built-in function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Constructor&lt;/strong&gt;; A constructor is used to create a new instance 
  of a class (ie. to create an object).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Continue&lt;/strong&gt;; The continue statement is used within loops to bypass 
  the rest of the code for the current run through the loop. With while (and do/while) 
  loops it jumps to the spot in the loop where the while statement is evaluated 
  again to see whether to continue around the loop. With for loops it jumps to 
  the spot there the third statement in the for loop definition is run and continues 
  from there. Continue is a reserved word and cannot be used for anything other 
  than bypassing loop processing.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8183964652449803915?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8183964652449803915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8183964652449803915' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8183964652449803915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8183964652449803915'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html' title='Constructor-Confirm-Concatenate-Closed-clearTimeout -ClearInterval-Class-Checkbox-Char-Catch-Cascading StyleSheets'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5006473105364569790</id><published>2010-04-19T11:30:00.001-07:00</published><updated>2010-04-22T12:24:01.528-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Double-Document Object Model-Document-Do-Delete-Default-Debug-Date</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  d &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Date&lt;/strong&gt;; The Date class is used to define and manipulate dates. 
  You can obtain the current date and time as well as perform date calculations 
  using this class. This is not a reserved word so you can declare your own variable 
  or function called Date but if you do then you will not be able to use the Date 
  class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Debug&lt;/strong&gt;; The story goes that when one of the early computers 
  malfunctioned Admiral Grace Hopper discovered that the problem was that a moth 
  had got into the circuitry and caused a short circuit. This was the origin of 
  the term bug in reference to problems with computer programs running correctly. 
  The process of removing errors from computer programs has therefore become known 
  as debugging.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Default&lt;/strong&gt;; The default clause within a switch statement specifies 
  the statements that are to be run if none of the cases apply. Default is a reserved 
  word and cannot be used for anything other than declaring the default clause 
  within a switch statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Delete&lt;/strong&gt;; The delete statement deletes an object that was created 
  using the new statement. Delete is a reserved word and cannot be used for anything 
  other than deleting an object.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DHTML&lt;/strong&gt;; DHTML is not a separate language as such but rather 
  a method of combining HTML, stylesheets, and Javascript to create dynamic effects 
  on your web page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Do&lt;/strong&gt;; The do / while statement specifies a block of code that 
  is to be run multiple times. It will run until either the while condition is 
  not met or a break statement within the do block is run. The while condition 
  is tested at the end of the loop so the loop will always run at least once. 
  Do is a reserved word and cannot be used for anything other than declaring the 
  start of a do/while statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Document&lt;/strong&gt;; The document object is used to reference and manipulate 
  the content of the current page. Exactly how the page is accessed depends on 
  the Document Object Model that the browser uses. This is not a reserved word 
  so you can declare your own variable or function called document but if you 
  do then you will not be able to reference anything on the current web page.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Document Object Model&lt;/strong&gt;; The document object model is a collection 
  of class definitions that allow a program written in Javascript to interact 
  with the objects on the web page.&lt;/p&gt;
&lt;p&gt;Unfortunately there are three different DOMs that have been used by different 
  web browsers. Netscape 4 used one DOM that was not incorporated into subsequent 
  versions. Internet Explorer use their own DOM in all recent versions of their 
  browser. The standard DOM developed by W3C is supported to varying extents by 
  all modern browsers including Internet Explorer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Double&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. double is one the data types 
  that would have been able to be explicitly defined. To allow for this double 
  was a reserved word. The plan to allow specific data types in Javascript no 
  longer exists and double is therefore no longer on the reserved word list in 
  the latest standards. Since many people still use earlier browsers where this 
  was defined as a reserved word you should avoid using it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5006473105364569790?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5006473105364569790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5006473105364569790' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5006473105364569790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5006473105364569790'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html' title='Double-Document Object Model-Document-Do-Delete-Default-Debug-Date'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5806078369560040171</id><published>2010-04-15T09:46:00.000-07:00</published><updated>2010-04-22T12:23:47.344-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Event-Eval-Escape-Encryption-Else-ECMAscript</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  e &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;ECMAscript&lt;/strong&gt;; ECMA is an international standards organization. 
  When they were given responsibility for the Javascript standards the language 
  was officially renamed ECMAscript. ECMAscript itself specifies only the core 
  language, it does not contain anything to reference the browser or the web document 
  being displayed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Else&lt;/strong&gt;; The else clause within an if statement specifies code 
  that is to be run when the condition attached to the if statement evaluates 
  to false or zero. Else is a reserved word and cannot be used for anything other 
  than declaring an else clause within an if statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Encryption&lt;/strong&gt;; Encryption is a means of concealing the actual 
  content and meaning of something by substituting other values according to some 
  predefined formula. This can vary from straight substitution through formula 
  substitutions to actual code table lookups.&lt;/p&gt;
&lt;p&gt;In normal use the more complex the formula used for the conversion and the 
  less relationship that there is between specific encrypted values and the original 
  source then the harder it becomes for anyone to decrypt the content of the message.&lt;/p&gt;
&lt;p&gt;With Javascript encrypted web pages the exact encryption method used is totally 
  irrelevant as the web page also needs to include the script to decrypt the page 
  or the web browser can't decrypt and display it. This makes even the most complex 
  encryption method just as easy to bypass as the simplest substitution.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Escape&lt;/strong&gt;; The escape built-in function converts all of the characters 
  in a text string that are not alphabetic or numeric to the hexadecimal number 
  equivalent preceded by a %. This is not a reserved word so you can declare your 
  own variable or function called escape but if you do then you will not be able 
  to use the built-in function&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Eval&lt;/strong&gt;; The Eval built-in function is used to evaluate whatever 
  is passed to it and then to run it. This allows you to use Javascript to dynamically 
  build the Javascript code that is to be run next. This is not a reserved word 
  so you can declare your own variable or function called Eval but if you do then 
  you will not be able to use the built-in function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Event&lt;/strong&gt;; An Event is something that happens. Examples of web 
  page events include loading a new page, clicking on a link, or filling out a 
  form field. Javascript uses event handlers to identify when specific events 
  have occurred and to perform the processing that has been defined to handle 
  that event.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5806078369560040171?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5806078369560040171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5806078369560040171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5806078369560040171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5806078369560040171'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html' title='Event-Eval-Escape-Encryption-Else-ECMAscript'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2995923903642965119</id><published>2010-04-14T13:15:00.000-07:00</published><updated>2010-04-22T12:23:34.625-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Function-Frame-Forms-For-Focus-Float-Flash-Finally-Final-FileUpload-False</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  f &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;False&lt;/strong&gt;; Boolean variables can only have one of two values false 
  or true. All conditions within if statements, for loops and while loops are 
  evaluated as boolean results. False is a reserved word and cannot be used for 
  anything other than to supply a boolean value of false.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;FileUpload&lt;/strong&gt;; The FileUpload object is used to access fileupload 
  fields within forms from Javascript. This is not a reserved word so you can 
  declare your own variable or function called FileUpload but if you do then you 
  will not be able to properly process any forms that contain fileupload fields 
  on your page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Final&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. final is one the data types 
  that would have been able to be explicitly defined. To allow for this final 
  was a reserved word. The plan to allow specific data types in Javascript no 
  longer exists and final is therefore no longer on the reserved word list in 
  the latest standards. Since many people still use earlier browsers where this 
  was defined as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Finally&lt;/strong&gt;; The finally statement defines a block of code that 
  will always be run after the completion of the preceding try block. The finally 
  block will always be run even when an error occurs and control is passed to 
  a catch block. The finally block will be run immediately after any catch block. 
  Finally is a reserved word and cannot be used for anything other than declaring 
  a final error handler for a try block.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Flash&lt;/strong&gt;; Flash is an internet plugin that provides similar functionality 
  to DHTML. The language used to program a Flash presentation is similar to but 
  not identical with Javascript. You can use Javascript to detect whether Flash 
  is installed in the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Float&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. float is one the data types 
  that would have been able to be explicitly defined. To allow for this float 
  was a reserved word. The plan to allow specific data types in Javascript no 
  longer exists and float is therefore no longer on the reserved word list in 
  the latest standards. Since many people still use earlier browsers where this 
  was defined as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Focus&lt;/strong&gt;; The focus method is used to give the focus (ie make 
  current) the object that it belongs to. Giving a text field the focus will move 
  the cursor to that field. Giving a window the focus will move it in front of 
  all of the others. Actions that do not specify a particular object to apply 
  to use the one that has the focus. This is not a reserved word so you can declare 
  your own variable or function called focus but if you do then you will not be 
  able to use this method to control which object is current.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For&lt;/strong&gt;; The for statement specifies a block of code that is to 
  be run multiple times. The for statement contains three sub-statements that 
  control the loop processing. The first statement is run once at the start and 
  usually defines a loop counter. The second statement is the condition statement 
  tested after each time through the loop. The third statement runs at the end 
  of each time through the loop and is usually used to increment the loop counter. 
  For is a reserved word and cannot be used for anything other than declaring 
  a for loop.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Form&lt;/strong&gt;; The form object is used to provide form processing in 
  Javascript. This is not a reserved word so you can declare your own variable 
  or function called form but if you do then you will not be able to access any 
  forms on your page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Forms&lt;/strong&gt;; The forms array contains all of the form objects defined 
  for the web page. This is not a reserved word so you can declare your own variable 
  or function called forms but if you do then you will not be able to reference 
  the forms on the web page via this class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Frame&lt;/strong&gt;; The frame array contains a list of all of the frames 
  defined within your web page. This is not a reserved word so you can declare 
  your own variable or function called frame but if you do then you will not be 
  able to access any frame information from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Frames&lt;/strong&gt;; The frames array contains all of the frame objects 
  defined in the web page. This is not a reserved word so you can declare your 
  own variable or function called frames but if you do then you will not be able 
  to reference the frames that make up the web page via this class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Function&lt;/strong&gt;; A function is a group of statements that have been 
  collected together and given a name. This group of statements can then be run 
  from several different places within the program by calling it by name. You 
  can pass parameters to a function telling it what to process and the function 
  can return a value. When a function does not return a value it is often referred 
  to as a sub-routine.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Function&lt;/strong&gt;; The function keyword is used to define functions 
  in your program. Function is a reserved word and cannot be used for anything 
  other than defining a function.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2995923903642965119?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2995923903642965119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2995923903642965119' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2995923903642965119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2995923903642965119'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html' title='Function-Frame-Forms-For-Focus-Float-Flash-Finally-Final-FileUpload-False'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2978313871658330462</id><published>2010-04-13T11:00:00.001-07:00</published><updated>2010-04-22T12:23:21.073-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>HTML-Hidden</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  h &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Hidden&lt;/strong&gt;; The Hidden object is used to access hidden fields 
  within forms from Javascript. This is not a reserved word so you can declare 
  your own variable or function called Hidden but if you do then you will not 
  be able to properly process any forms that contain hidden fields on your page 
  from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt;; HTML is not a programming language, It is a method of 
  marking up the content of your web page so that a web browser knows how you 
  want it displayed. HTML consists of a number of different tags that you surround 
  the various pieces of your page content with to identify what that content is. 
  For example you surround each paragraph with paragraph tags. The web browser 
  then knows how to display the content based on which tags you have used. You 
  can modify the way that a web browser processes your HTML using stylesheets.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2978313871658330462?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2978313871658330462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2978313871658330462' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2978313871658330462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2978313871658330462'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/html-hidden.html' title='HTML-Hidden'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7753745450954109813</id><published>2010-04-12T12:25:00.001-07:00</published><updated>2010-04-22T12:23:07.559-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>isNaN-isfinite-Int-Instanceof-Innerwidth-Innerheight-Infinity-In-Image-If</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  i &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;If&lt;/strong&gt;; The if statement specifies a condition and one or two 
  blocks of code. When the condition evaluates to anything other than false or 
  zero the first block of code is run. If a second block of code is specified 
  in an else clause then that block of code will run when the first block doesn't 
  (ie when the condition evaluates to false or zero). If is a reserved word and 
  cannot be used for anything other than declaring an if statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Image&lt;/strong&gt;; An Image object is automatically created for each of 
  the images on a web page. This is not a reserved word so you can declare your 
  own variable or function called Image but if you do then you will not be able 
  to access the images on the page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Images&lt;/strong&gt;; The images array contains all of the image objects 
  defined for the web page. This is not a reserved word so you can declare your 
  own variable or function called images but if you do then you will not be able 
  to reference the images on the web page via this class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;In&lt;/strong&gt;; The in clause is used with a for/in statement to identify 
  an object to be processed by the statement. The loop code will be run for each 
  of the properties of the object. They will be assigned one at a time to the 
  variable defined by the in clause. In is a reserved word and cannot be used 
  for anything other than declaring a for/in loop.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Infinity&lt;/strong&gt;; Infinity is a global property (variable) with a 
  constant value. If the result of a mathematical calculation would result in 
  a number that is to big to be held in a Javascript numeric field then this value 
  is assigned to the field instead. This allows you to test the result of a calculation 
  to see if the answer has overflowed the maximum allowable value. While this 
  value is assigned as a result of a numerical calculation testing the value itself 
  is not a numerical value. This is not a reserved word so you can declare your 
  own variable or function called Infinity but if you do then you will not be 
  able to reference the global property to test for numerical overflow.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Innerheight&lt;/strong&gt;; The innerheight property is used to determine 
  the height of a window in some browsers. This is not a reserved word so you 
  can declare your own variable or function called innerheight but if you do then 
  you will not be able to find or alter the height of a window in some browsers.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Innerwidth&lt;/strong&gt;; The innerwidth property is used to determine the 
  width of a window in some browsers. This is not a reserved word so you can declare 
  your own variable or function called innerwidth but if you do then you will 
  not be able to find or alter the width of a window in some browsers&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Instance&lt;/strong&gt;; When an object oriented program creates an object 
  it is said to have created an instance of the particular class to which that 
  object belongs. The process of instantiation of an object is performed by a 
  constructor.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Instanceof&lt;/strong&gt;; The instanceof statement tests if an object is 
  of a particular type. It evaluates to true if the object is that type and false 
  if it is not. Instanceof is a reserved word and cannot be used for anything 
  other than testing an object's type.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Int&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the Javascript language. int is one the data types 
  that would have been able to be explicitly defined. To allow for this int was 
  a reserved word. The plan to allow specific data types in Javascript no longer 
  exists and int is therefore no longer on the reserved word list in the latest 
  standards. Since many people still use earlier browsers where this was defined 
  as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;isfinite&lt;/strong&gt;; isfinite is a global method that can be used to 
  test for a number being too big for Javascript to handle. Unlike testing against 
  Infinity directly which only allows you to test for a positive number overflow 
  condition, using this method also tests for -Infinity. This is not a reserved 
  word so you can declare your own variable or function called isfinite but if 
  you do then you will not be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;isNaN&lt;/strong&gt;; isNaN is a global method which will return true if 
  the object is a number and false if it is not. This is not a reserved word so 
  you can declare your own variable or function called isNaN but if you do then 
  you will not be able to use this method.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7753745450954109813?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7753745450954109813/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7753745450954109813' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7753745450954109813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7753745450954109813'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html' title='isNaN-isfinite-Int-Instanceof-Innerwidth-Innerheight-Infinity-In-Image-If'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4622322172300525769</id><published>2010-04-01T08:09:00.001-07:00</published><updated>2010-04-22T12:22:43.134-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Julian Day-Javascript-Java</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  j &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Java&lt;/strong&gt;; Java is not the same as Javascript. While can be used 
  to create applets for browsers it requires a plug-in installed in order to be 
  able to run on client computers. Java can also be used for server side programming.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Javascript&lt;/strong&gt;; Javascript is a scripting language that was designed 
  to give web pages the ability to interact with the people viewing them. Examples 
  of such interaction include performing actions in response to mouse movement 
  or mouse clicks and validation of what has been entered into forms. Javascript 
  is made up of the core language (also known as ECMAscript), the Document Object 
  Model (which allows interaction with the web page), and the Browser Object Model 
  (which allows limited interaction with the browser).&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Julian Day&lt;/strong&gt;; The current Julian Day is a single number that 
  is a count of the number of days that have past since noon Universal Time on 
  January 1, 4713 BCE. This means that midnight on the zero meridian will always 
  have a Julian day ending with .5&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4622322172300525769?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4622322172300525769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4622322172300525769' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4622322172300525769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4622322172300525769'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html' title='Julian Day-Javascript-Java'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1611025176173003686</id><published>2010-03-31T10:35:00.001-07:00</published><updated>2010-04-22T12:22:29.109-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Long-locationbar-Location-Links-Link-Length</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  l &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Length&lt;/strong&gt;; The length method is used to supply the length of 
  the particular object. This is not a reserved word so you can declare your own 
  variable or function called length but if you do then you will not be able to 
  find out the length of objects.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Link&lt;/strong&gt; ; A Link object is automatically created for each of 
  the link on a web page (ie. all &amp;lt;a href=&amp;quot;somewhere.htm&amp;quot;&amp;gt;). This 
  is not a reserved word so you can declare your own variable or function called 
  Link but if you do then you will not be able to access the links on the page 
  from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Links&lt;/strong&gt;; The links array contains all of the link objects defined 
  for the web page. This is not a reserved word so you can declare your own variable 
  or function called links but if you do then you will not be able to reference 
  the links on the web page via this class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Location&lt;/strong&gt;; The location of the current page is the address 
  of where it can be found on the web. By assigning a new value to the location 
  we can load an alternative page into the browser. This is not a reserved word 
  so you can declare your own variable or function called location but if you 
  do then you will not be able to reference the location of the current page or 
  change to a different page using Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;locationbar&lt;/strong&gt;; The locationbar property allows you to reference 
  the location bar (or address bar) in the browser in order to test whether it 
  is visible or not. With most browsers this is a read only field. This is not 
  a reserved word so you can declare your own variable or function called locationbar 
  but if you do then you will not be able to access that part of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Long&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the JavaScript language. long is one the data types 
  that would have been able to be explicitly defined. To allow for this long was 
  a reserved word. The plan to allow specific data types in JavaScript no longer 
  exists and long is therefore no longer on the reserved word list in the latest 
  standards. Since many people still use earlier browsers where this was defined 
  as a reserved word you should avoid using it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1611025176173003686?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1611025176173003686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1611025176173003686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1611025176173003686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1611025176173003686'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html' title='Long-locationbar-Location-Links-Link-Length'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8359554620040495848</id><published>2010-03-30T09:51:00.001-07:00</published><updated>2010-04-22T12:22:16.554-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Moveto-Moveby-mimeTypes-Method-menubar-Math</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  m &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Math&lt;/strong&gt;; The Math class is used to define advanced mathematical 
  functions that can be applied to numeric variables. This is not a reserved word 
  so you can declare your own variable or function called Math but if you do then 
  you will not be able to use the Math class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;menubar&lt;/strong&gt;; The menubar property allows you to reference the 
  menu bar in the browser in order to test whether it is visible or not. With 
  most browsers this is a read only field. This is not a reserved word so you 
  can declare your own variable or function called menubar but if you do then 
  you will not be able to access that part of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Method&lt;/strong&gt;; A Method is a function that is attached to a particular 
  class. The method has access to manipulate the properties of objects belonging 
  to the class but unlike functions is only accessible to objects belonging to 
  the class to which the method is attached.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;mimeTypes&lt;/strong&gt;; The mimeTypes class defines a collection containing 
  all of the mime types supported by the browser. This is not a reserved word 
  so you can declare your own variable or function called mimeTypes but if you 
  do then you will not be able to reference the list of mimetypes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Moveby&lt;/strong&gt;; The moveby method is used to move objects by a specified 
  distance from their current location. This works both for objects within a web 
  page and for browser windows. This is not a reserved word so you can declare 
  your own variable or function called moveby but if you do then you will not 
  be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Moveto&lt;/strong&gt;; The moveto method is used to move objects to a specific 
  location within their parent. This works both for objects within a web page 
  and for browser windows. This is not a reserved word so you can declare your 
  own variable or function called moveto but if you do then you will not be able 
  to use this method.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8359554620040495848?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8359554620040495848/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8359554620040495848' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8359554620040495848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8359554620040495848'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html' title='Moveto-Moveby-mimeTypes-Method-menubar-Math'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-308848573525486200</id><published>2010-03-29T10:11:00.000-07:00</published><updated>2010-04-22T12:22:03.145-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Number-Null-New-Navigator-NaN</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  n &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;NaN&lt;/strong&gt;; NaN is a global property (variable) with a constant value. 
  NaN is an abbreviation for &amp;quot;Not a Number&amp;quot;. Comparison of any object 
  to this property will return true if the object is not a number and false if 
  it is. This is not a reserved word so you can declare your own variable or function 
  called NaN but if you do then you will not be able to reference the global property 
  to test for if a field contains a numeric value.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Navigator&lt;/strong&gt;; The navigator contains information that the browser 
  supplies to the web page such as what browser it claims to be, what operating 
  system it thinks is running on the computer, and other similar information. 
  This is not a reserved word so you can declare your own variable or function 
  called navigator but if you do then you will not be able to reference the navigator 
  information.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New&lt;/strong&gt;; The new statement defines creates a new object. This 
  object will continue to exist until the page is unloaded or it is deleted using 
  the delete statement. New is a reserved word and cannot be used for anything 
  other than creating a new object.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Null&lt;/strong&gt;; is a special value that all variables are considered 
  to have if they have been defined but have not been assigned a value. Null is 
  a reserved word and cannot be used for anything other than to check that a variable 
  does not have an assigned value. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Number&lt;/strong&gt;; The Number object is used to define and modify numeric 
  fields. Special values such as MAX_VALUE and methods such as toFixed, toExponential, 
  and toPrecision belong to the Number class. This is not a reserved word so you 
  can declare your own variable or function called Number but if you do then you 
  will not be able to use the Number object.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-308848573525486200?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/308848573525486200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=308848573525486200' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/308848573525486200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/308848573525486200'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html' title='Number-Null-New-Navigator-NaN'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4950122000469650985</id><published>2010-03-26T08:27:00.000-07:00</published><updated>2010-04-22T12:21:45.213-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Outerwidth-Outerheight-Operator-Open-Onunload-Onload-Onfocus-Onerror-Onblur-Object Oriented Programming-Obfuscation</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  o &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;Obfuscation&lt;/strong&gt;; ike encryption, obfuscation is a means of concealing 
the content of your HTML or Javascript from casual view. Unlike encryption there 
is no decryption script required since the standard obfuscated values are interpreted 
by the browser exactly the same as if the plain characters were there. &lt;/p&gt;
&lt;p&gt;With HTML the obfuscated versions of characters are ampersand variables. These 
  consist of an ampersand foloowed by the numeric value associated with the particular 
  character in the character set that the web page is using and is then terminated 
  with a semi-colon. These are directly readable by the browser as if they were 
  the original characters&lt;/p&gt;
&lt;p&gt;With Javascript and for values in web links the value starts with a percent 
  sign and is followed by the two digit hexadecimal value of the character. These 
  are directly readable in web addresses as if they were the original characters. 
  In Javascript you simply anclose the entire obfuscated string inside of an unescape() 
  function call to tell the browser how to handle the code.&lt;/p&gt;
&lt;p&gt;As the means of converting these values back into readable text are well known 
  using these techniques does not hide your page content from individuals viewing 
  your page but it may be sufficient to conceal information from web spiders. 
&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Object&lt;/strong&gt;; An Object represents an individual, identifiable item. 
  An object belongs to a class and has properties. For example we might have two 
  objects - yesterday and today - each of which is a date. The properties of the 
  two dates are different because the each has a different day of the week.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Object Oriented Programming&lt;/strong&gt;; Object Oriented Programming 
  involves defining objects and the way that these objects interact with one another. 
  Objects belong to classes that define all of the common functionality that those 
  objects share in common so that you do not have to define everything all over 
  again when you create a new object that belongs to an existing class.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Onblur&lt;/strong&gt;; The onblur event is used to define actions to be taken 
  when the object to which the event is attached loses the focus ie. ceases to 
  be current. This is not a reserved word so you can declare your own variable 
  or function called onblur but if you do then you will not be able to use this 
  event.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Onerror&lt;/strong&gt;; The onerror event is used to define actions to be 
  taken when the there is an error condition raised by your Javascript code. This 
  is not a reserved word so you can declare your own variable or function called 
  onerror but if you do then you will not be able to use this event to set up 
  your own error handling.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Onfocus&lt;/strong&gt;; The onfocus event is used to define actions to be 
  taken when the object to which the event is attached gains the focus ie. bocomes 
  current. This is not a reserved word so you can declare your own variable or 
  function called onfocus but if you do then you will not be able to use this 
  event.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Onload&lt;/strong&gt;; The onload event is used to define actions to be taken 
  when the web page to which it is attached finishes loading. This is not a reserved 
  word so you can declare your own variable or function called onload but if you 
  do then you will not be able to use this event.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Onunload&lt;/strong&gt;; The onunload event is used to define actions to 
  be taken when the web page to which it is attached is unloaded (ie. when your 
  visitor moves on to another page). This is not a reserved word so you can declare 
  your own variable or function called onunload but if you do then you will not 
  be able to use this event.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Open&lt;/strong&gt;; The open method is usually used with windows objects 
  to open a new browser (popup) window. This is not a reserved word so you can 
  declare your own variable or function called open but if you do then you will 
  not be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Opener&lt;/strong&gt;; After you have opened a popup or popunder window the 
  new window is able to reference the window that opened it using the opener object. 
  This is not a reserved word so you can declare your own variable or function 
  called opener but if you do then you will not be able to reference anything 
  on the web page that opened this new window.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Operator&lt;/strong&gt;; An operator is used to change the content of a variable. 
  There are a number of different types of operator.&lt;/p&gt;
&lt;p&gt; * Assignment Operators eg: = += -= *= /= %= &amp;lt;&amp;lt;= &amp;gt;&amp;gt;= &amp;gt;&amp;gt;&amp;gt;= 
  &amp;amp;= |= ^=&lt;br&gt;
  * Concatenation Operator eg: +&lt;br&gt;
  * Arithmetic Operators eg: + - * / % ++ --&lt;br&gt;
  * Comparison Operators eg: == != &amp;gt; &amp;lt; &amp;gt;= &amp;lt;=&lt;br&gt;
  * Logical Operators eg: &amp;amp;&amp;amp; || !&lt;br&gt;
  * Bitwise Operators eg: &amp;amp; | ^ - &amp;lt;&amp;lt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Outerheight&lt;/strong&gt;; The outerheight property is used to determine 
  the height of a window (including the browser borders and title bar) in some 
  browsers. This is not a reserved word so you can declare your own variable or 
  function called outerheight but if you do then you will not be able to find 
  the height of the window in all browsers.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Outerwidth&lt;/strong&gt;; The outerwidth property is used to determine the 
  width of a window (including the browser borders and title bar) in some browsers. 
  This is not a reserved word so you can declare your own variable or function 
  called outerwidth but if you do then you will not be able to find the width 
  of the window in all browsers.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4950122000469650985?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4950122000469650985/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4950122000469650985' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4950122000469650985'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4950122000469650985'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html' title='Outerwidth-Outerheight-Operator-Open-Onunload-Onload-Onfocus-Onerror-Onblur-Object Oriented Programming-Obfuscation'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2612743969349913210</id><published>2010-03-25T13:53:00.000-07:00</published><updated>2010-04-22T12:21:18.737-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Property-Prompt-Procedural Programming-Print-personalbar-Password-ParseInt-ParseFloat-Parse-Parent-Parameter-Pageyoffset-Pagexoffset</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  p &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Pagexoffset&lt;/strong&gt;; The pageXOffset property is used to determine 
  the X coordinate of the scroll position in some browsers. This is not a reserved 
  word so you can declare your own variable or function called pageXOffset but 
  if you do then you will not be able to find or alter the scroll position of 
  a window in some browsers&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Pageyoffset&lt;/strong&gt;; The pageYOffset property is used to determine 
  the Y coordinate of the scroll position in some browsers. This is not a reserved 
  word so you can declare your own variable or function called pageYOffset but 
  if you do then you will not be able to find or alter the scroll position of 
  a window in some browsers&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameter&lt;/strong&gt;; A Parameter is a variable that is passed to a function 
  as part of the function call. The parameters that you pass supply values to 
  the arguments defined within the function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parent&lt;/strong&gt;; When you are using frames or iframes then a relationship 
  exists between the various pages that make up what is being displayed on the 
  screen. Where one page contains another that page is the parent of the other 
  page. This is not a reserved word so you can declare your own variable or function 
  called parent but if you do then you will not be able to reference the parent 
  page from within a page contained within a frame.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parse&lt;/strong&gt;; Parsing is the process of reading the source code of 
  your program in order to determine what the code is supposed to do. The Javascript 
  interpreter built into the web browser parses Javascript by searching for reserved 
  words and operators. It can also identify variables/properties and functions/methods 
  that have already been defined. It knows what those parts of the statement mean 
  and is therefore able to determine what the rest means from its context.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ParseFloat&lt;/strong&gt;; The parseFloat built-in function extracts the 
  number portion of whatever value is passed to it. One common use for this function 
  is to convert numbers in text strings to numbers so that they can be used in 
  numerical calculations. This is not a reserved word so you can declare your 
  own variable or function called parseFloat but if you do then you will not be 
  able to use the built-in function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ParseInt&lt;/strong&gt;; The parseInt built-in function extracts the integer 
  portion of whatever value is passed to it. One common use for this function 
  is to extract the major version number of thecurrent browser from the version 
  field discarding the minor version number (eg. 7.53 becomes just 7). This is 
  not a reserved word so you can declare your own variable or function called 
  parseInt but if you do then you will not be able to use the built-in function.&lt;/p&gt;
&lt;p&gt;Note that if the number passed to the parseInt function has a leading zero 
  (eg. 07) then that number will be considered to be an octal (base 8) number 
  instead of a decimal (base 10) number.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Password&lt;/strong&gt;; The Password object is used to access password fields 
  within forms from Javascript. This is not a reserved word so you can declare 
  your own variable or function called Password but if you do then you will not 
  be able to properly process any forms that contain password fields on your page 
  from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;personalbar&lt;/strong&gt;; The personalbar property allows you to reference 
  the personal bar (or links bar) in the browser in order to test whether it is 
  visible or not. With most browsers this is a read only field. This is not a 
  reserved word so you can declare your own variable or function called personalbar 
  but if you do then you will not be able to access that part of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Print&lt;/strong&gt;; The print method is used with windows objects to send 
  the current contents of the windowe to the printer. This is not a reserved word 
  so you can declare your own variable or function called print but if you do 
  then you will not be able to print the content of the window.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Procedural Programming&lt;/strong&gt;; Procedural programming uses a structured 
  approach to coding the program where the functionality of the program is broken 
  down into a number of functions or subroutines to make it easier to follow and 
  reduce the need to repeat code.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prompt&lt;/strong&gt;; The prompt function that is predefined for use in 
  Javascript is similar to the alert and confirm functions in that it will display 
  a popup message on the screen. The difference with prompt is that this [popup 
  actually has an input field where your visitor can type in a value to be returned 
  to your script. This is not a reserved word so you can declare your own variable 
  or function called prompt but if you do then you will not be able to use the 
  built-in function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Property&lt;/strong&gt;; Properties are those values that are associated 
  with a particular object that distinguish that object from other objects belonging 
  to the same class. For example each image on your web page has the following 
  properties (amongst others): width, height, filename, title, alternate text. 
  Javascript can change the values of these properties by calling the methods 
  attached to the image class.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2612743969349913210?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2612743969349913210/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2612743969349913210' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2612743969349913210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2612743969349913210'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html' title='Property-Prompt-Procedural Programming-Print-personalbar-Password-ParseInt-ParseFloat-Parse-Parent-Parameter-Pageyoffset-Pagexoffset'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3288814137576764028</id><published>2010-03-24T12:04:00.000-07:00</published><updated>2010-04-22T12:21:02.338-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>RegExp-Reserved Words-Reset-Resizeby-Resizeto-Return</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  r &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Return&lt;/strong&gt;; The return statement terminates execution of a function 
  and returns the following value as the value of the function. Return is a reserved 
  word and cannot be used for anything other than returning a value from a function.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Resizeto&lt;/strong&gt;; The resizeto method is used to resize objects to 
  a specific size. This is not a reserved word so you can declare your own variable 
  or function called resizeto but if you do then you will not be able to use this 
  method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Resizeby&lt;/strong&gt;; The resizeby method is used to resize objects by 
  a specified amount from their current size. This is not a reserved word so you 
  can declare your own variable or function called resizeby but if you do then 
  you will not be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Reset&lt;/strong&gt;; The Reset object is used with form processing in Javascript 
  to reset the form back to its original values. This is not a reserved word so 
  you can declare your own variable or function called reset but if you do then 
  you will not be able to reset forms.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Reserved Words&lt;/strong&gt;; Some words have a special meaning in Javascript. 
  These reserved words are the ones that you use to provide the instructions on 
  what the program is to do. You cannot use these words as variable or function 
  names.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RegExp&lt;/strong&gt;; The RegExp object is used to define Regular Expressions. 
  This is not a reserved word so you can declare your own variable or function 
  called RegExp but if you do then you will not be able to use the RegExp object.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Radio&lt;/strong&gt;; The Radio object is used to access radio buttons within 
  forms from Javascript. This is not a reserved word so you can declare your own 
  variable or function called Radio but if you do then you will not be able to 
  properly process any forms that contain radio buttons on your page from Javascript.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3288814137576764028?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3288814137576764028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3288814137576764028' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3288814137576764028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3288814137576764028'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html' title='RegExp-Reserved Words-Reset-Resizeby-Resizeto-Return'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7803169665270516426</id><published>2010-03-23T11:22:00.000-07:00</published><updated>2010-04-22T12:20:48.499-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Switch-Subroutine-Submit-String-statusbar-Short-SetTimeout-Server-Scrollto-Scrollby-scrollbars</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  s &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;scrollbars&lt;/strong&gt;; The scrollbars property allows you to reference 
  the scroll bars in the browser in order to test whether they are visible or 
  not. With most browsers this is a read only field. This is not a reserved word 
  so you can declare your own variable or function called scrollbars but if you 
  do then you will not be able to access that part of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Scrollby&lt;/strong&gt;; The scrollby method is used to scroll the current 
  object by a specified distance from the current scroll position. This works 
  for anything that has scroll bars. This is not a reserved word so you can declare 
  your own variable or function called scrollby but if you do then you will not 
  be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Scrollto&lt;/strong&gt;; The scrollto method is used to scroll the current 
  object to a specific scroll position. This works for any object having a scrollbar. 
  This is not a reserved word so you can declare your own variable or function 
  called scrollto but if you do then you will not be able to use this method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Select&lt;/strong&gt;; The Select object is used to access select dropdowns 
  or lists within forms from Javascript. This is not a reserved word so you can 
  declare your own variable or function called Select but if you do then you will 
  not be able to properly process any forms that contain select dropdowns or lists 
  on your page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Server&lt;/strong&gt;; When a web program runs on the server computer or 
  there is server side processing the program in question is being run on the 
  computer that hosts the web site and not on your computer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SetInterval&lt;/strong&gt;; The setInterval method is available on window 
  objects. It is used to add a delay to a function (usually one that is going 
  to be executed multiple times. This is not a reserved word so you can declare 
  your own variable or function called setInterval but if you do then you will 
  not be able to use the method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SetTimeout&lt;/strong&gt;; The setTimeout method is available on window objects. 
  It is used to add a delay to a function (usually one that is going to be executed 
  multiple times. This is not a reserved word so you can declare your own variable 
  or function called setTimeout but if you do then you will not be able to use 
  the method.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Short&lt;/strong&gt;; At one stage it was planned that specific data types 
  would be introduced into the JavaScript language. short is one the data types 
  that would have been able to be explicitly defined. To allow for this short 
  was a reserved word. The plan to allow specific data types in JavaScript no 
  longer exists and short is therefore no longer on the reserved word list in 
  the latest standards. Since many people still use earlier browsers where this 
  was defined as a reserved word you should avoid using it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;statusbar&lt;/strong&gt;; The statusbar property allows you to reference 
  the status bar in the browser in order to test whether it is visible or not. 
  With most browsers this is a read only field but some do allow you to output 
  text into the status bar if your visitor has configured the browser appropriately. 
  This is not a reserved word so you can declare your own variable or function 
  called statusbar but if you do then you will not be able to access that part 
  of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;String&lt;/strong&gt;; The String object is used to define and modify text 
  strings. As strings can be more easily defined simply by enclosing the valuein 
  quotes the main use where you will see them referenced is to convert numeric 
  fields to text. This is not a reserved word so you can declare your own variable 
  or function called String but if you do then you will not be able to use the 
  String object.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Submit&lt;/strong&gt;; The Submit object is used with form processing in 
  Javascript to actually submit the validated form. This is not a reserved word 
  so you can declare your own variable or function called submit but if you do 
  then you will not be able to submit forms.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Subroutine&lt;/strong&gt;; A subroutine is a group of statements that have 
  been collected together and given a name. This group of statements can then 
  be run from several different places within the program by calling it by name. 
  You can pass parameters to a subroutine telling it what to process. A subroutine 
  diifers from a function in that a function returns a value while a subroutine 
  does not. While other programming languages may use different means of calling 
  functions and subroutines - eg 'call subroutine();' and 'x = function();' - 
  Javascript makes no distinction between subroutine and function calls.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Switch&lt;/strong&gt;; The switch statement specifies a number of cases that 
  a variable can evaluate to and one or more statements to be run if the switch 
  evaluates to a particular case. If the switch statement does not evaluate to 
  a particular case value then the statements following the default label will 
  be run. Switch is a reserved word and cannot be used for anything other than 
  declaring a switch statement.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7803169665270516426?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7803169665270516426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7803169665270516426' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7803169665270516426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7803169665270516426'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html' title='Switch-Subroutine-Submit-String-statusbar-Short-SetTimeout-Server-Scrollto-Scrollby-scrollbars'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2499117132033481465</id><published>2010-03-22T09:11:00.000-07:00</published><updated>2010-04-22T12:20:33.995-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Typeof-True-toString-toolbar-Throw-This-Textarea-Text</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  t &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Text&lt;/strong&gt;; The Text object is used to access text fields within 
  forms from Javascript. This is not a reserved word so you can declare your own 
  variable or function called Text but if you do then you will not be able to 
  properly process any forms that contain text fields on your page from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Textarea&lt;/strong&gt;; The Textarea object is used to access textarea fields 
  within forms from Javascript. This is not a reserved word so you can declare 
  your own variable or function called Textarea but if you do then you will not 
  be able to properly process any forms that contain textarea fields on your page 
  from Javascript.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This&lt;/strong&gt;; this is a quick way of referencing the current object. 
  It allows the same code to be reused on multiple objects where the object that 
  is being referenced is determined based on which one currently has the focus. 
  This is a reserved word and cannot be used for anything other than referencing 
  the current object.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Throw&lt;/strong&gt;; The throw statement creates an error. The statement 
  sets the error condition which can be a any valid variable or object type. Throw 
  is a reserved word and cannot be used for anything other than to generate a 
  custom error.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;toolbar&lt;/strong&gt;; The toolbar property allows you to reference the 
  tool bar in the browser in order to test whether it is visible or not. With 
  most browsers this is a read only field. This is not a reserved word so you 
  can declare your own variable or function called toolbar but if you do then 
  you will not be able to access that part of the browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;toString&lt;/strong&gt;; The toString method is used to convert an object 
  into a text string. This is not a reserved word so you can declare your own 
  variable or function called toString but if you do then you will not be able 
  to convert objects into strings.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;True&lt;/strong&gt;; Boolean variables can only have one of two values false 
  or true. All conditions within if statements, for loops and while loops are 
  evaluated as boolean results. True is a reserved word and cannot be used for 
  anything other than to supply a boolean value of true.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Try&lt;/strong&gt;; The try statement defines a block of code that will have 
  special error processing attached to handle any errors that occur during the 
  running of the code in the block. Any errors occuring during the execution of 
  the code will be handled by the appropriate catch and finally blocks. Try is 
  a reserved word and cannot be used for anything other than declaring a try block.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Typeof&lt;/strong&gt;; The typeof statement tests if an object is of a particular 
  type. It evaluates to true if the object is that type and false if it is not. 
  Typeof is a reserved word and cannot be used for anything other than testing 
  an object's type.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2499117132033481465?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2499117132033481465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2499117132033481465' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2499117132033481465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2499117132033481465'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html' title='Typeof-True-toString-toolbar-Throw-This-Textarea-Text'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7288343413086143332</id><published>2010-03-21T09:18:00.000-07:00</published><updated>2010-04-22T12:20:18.360-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>User Script-Unwatch-Universal Co-ordinated Time (UTC)-Unescape-undefined</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  u &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;undefined&lt;/strong&gt;; undefined is a global property (variable) with 
  a constant value. Javascript treats undefined as being equal to null. A variable 
  that has not been defined at all or which has been defined but not yet given 
  a value will be considered to have a value of null or undefined. Some of the 
  Javascript documentation states that a field that is not declared is null while 
  one that is declared but has no value is undefined. Logically I would have assumed 
  a field that has not been declared is undefined while one that is declared but 
  without a value is null - the exact opposite of what the documentation says. 
  As the two values are considered to be equal which means what is a moot point. 
  The one difference between null and undefined is that null is a reserved word 
  while undefined is not. As undefined is not a reserved word so you can declare 
  your own variable or function called undefined but if you do then you will not 
  be able to test if a field is undefined (although you will still be able to 
  test if it is null).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Unescape&lt;/strong&gt;; The unescape built-in function converts all of the 
  hexadecimal number equivalent preceded by a % back to the original character. 
  This is not a reserved word so you can declare your own variable or function 
  called unescape but if you do then you will not be able to use the built-in 
  function.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;Universal Co-ordinated Time (UTC)&lt;/strong&gt;; (usually abbreviated UTC) 
  is the name now given to a more accurate version of what used to be known as 
  Greenwich Mean Time and is the time in the timezone that includes the zero meridian 
  where daylight saving time is not in effect. The difference between UTC and 
  GMT is that GMT is tied to the rotation of the Earth directly while UTC is defined 
  via atomic clocks which are kept within one second of GMT by the occasional 
  addition of a leap second.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Unwatch&lt;/strong&gt;; The unwatch method is available to all Javascript 
  objects. It is used to remove a watch point to a property of that object that 
  was previously added using the watch method. A watchpoint monitors the property 
  and can manipulate the value of the property if required. This is not a reserved 
  word so you can declare your own variable or function called unwatch but if 
  you do then you will not be able to use the method.&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;User Script&lt;/strong&gt;; A User Javascript is Javascript that is attached 
  to the web browser itself instead of to a particular web page. These Javascripts 
  can be configured to run either on every web page that you visit or on those 
  web pages that you select to run them on. They are called user Javascripts because 
  they are installed by the user directly in their web browser instead of being 
  attached to any particular web page. The Opera web browser supports User Scripts 
  directly while Firefox and Internet Explorer have add-ons available that can 
  provide the ability to customise your browser with user scripts.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7288343413086143332?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7288343413086143332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7288343413086143332' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7288343413086143332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7288343413086143332'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html' title='User Script-Unwatch-Universal Co-ordinated Time (UTC)-Unescape-undefined'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3471485137900088038</id><published>2010-03-20T17:16:00.000-07:00</published><updated>2010-04-22T12:20:03.682-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Void-Variable-Var-valueOf</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  v &lt;a href="http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html" title="watch-while-window-with-w3c"&gt;w&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;valueOf&lt;/strong&gt;; The valueOf method is used to convert an object into 
  the most suitable primitive data type (usually a text string if the object isn't 
  a boolean or number). This is not a reserved word so you can declare your own 
  variable or function called valueOf but if you do then you will not be able 
  to convert objects into primitive data types.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Var&lt;/strong&gt;; The var statement is used to define a new variable that 
  will be used in later processing. The scope of the variable will be the same 
  as the scope of the block in which it is defined. Var is a reserved word and 
  cannot be used for anything other than to define a new variable.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Variable&lt;/strong&gt;; A variable is a named location in memory that is 
  used to hold a value that can be modified by the program. Computer programs 
  use variables to hold the data that a program is working with.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Void&lt;/strong&gt;; The void method can be used to stop a value being returned 
  from a function, method, or other code. It is normally used in bookmarklets 
  to prevent the value returned from the bookmarklet processing from overwriting 
  the web page. Void is a reserved word and cannot be used for anything other 
  than to stop a value being returned.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3471485137900088038?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3471485137900088038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3471485137900088038' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3471485137900088038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3471485137900088038'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html' title='Void-Variable-Var-valueOf'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7738391558727161747</id><published>2010-03-19T14:46:00.000-07:00</published><updated>2010-04-22T12:19:48.035-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='term'/><title type='text'>Watch-While-Window-With-W3C</title><content type='html'>&lt;div align="center"&gt; &lt;a href="http://javascript-lesson.blogspot.com/2010/04/anchor-ajax-activex-attribute-array.html" title="anchor-ajax-activex-attribute-array"&gt;a&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/byte-button-browser-break-boolean.html" title="byte-button-browser-break-boolean"&gt;b&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/constructor-confirm-concatenate-closed.html" title="constructor-confirm-concatenate-closed"&gt;c&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/double-document-object-model-document.html" title="double-document-object-model-document"&gt;d&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/event-eval-escape-encryption-else.html" title="event-eval-escape-encryption-else"&gt;e&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/function-frame-forms-for-focus-float.html" title="function-frame-forms-for-focus-float"&gt;f&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/html-hidden.html" title="html-hidden"&gt;h&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/isnan-isfinite-int-instanceof.html"&gt;i&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/04/julian-day-javascript-java.html" title="julian-day-javascript-java"&gt;j&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/long-locationbar-location-links-link.html" title="long-locationbar-location-links"&gt;l&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/moveto-moveby-mimetypes-method-menubar.html" title="moveto-moveby-mimetypes-method-menubar"&gt;m&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/number-null-new-navigator-nan.html" title="number-null-new-navigator"&gt;n&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/outerwidth-outerheight-operator-open.html" title="outerwidth-outerheight-operator-open"&gt;o&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/property-prompt-procedural-programming.html" title="property-prompt-procedural-programming"&gt;p&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/regexp-reserved-words-reset-resizeby.html" title="regexp-reserved-words-reset-resizeby"&gt;r&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/switch-subroutine-submit-string.html" title="switch-subroutine-submit-string"&gt;s&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/typeof-true-tostring-toolbar-throw-this.html" title="typeof-true-tostring-toolbar-throw-this"&gt;t&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/user-script-unwatch-universal-co.html" title="user-script-unwatch-universal"&gt;u&lt;/a&gt; 
  &lt;a href="http://javascript-lesson.blogspot.com/2010/03/void-variable-var-valueof.html" title="void-variable-var-valueof"&gt;v&lt;/a&gt; 
  w&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;W3C&lt;/strong&gt;; W3C is an abbreviation for World Wide Web Consortium. 
  The W3C is the standards body responsible for defining the HTML standard and 
  the Document Object Model that should be used by Javascript to access those 
  web page objects.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;With&lt;/strong&gt;; The with statement allows you to leave the object name 
  off of the front of all of the property and method references within a block 
  of code. All of the references within the block will be assumed to be properties 
  or methods of the object specified in the with statement. This will make all 
  of the code shorter than it would be if you had to add the object name to all 
  of the references. With is a reserved word and cannot be used for anything other 
  than creating a with block.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Window&lt;/strong&gt;; The window object is used to reference the current 
  browser window. If you want to manipulate the current window in some way then 
  the methods attached to this object are the way to do it. This is not a reserved 
  word so you can declare your own variable or function called window but if you 
  do then you will not be able to affect the current window in any way.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;While&lt;/strong&gt;; The while statement specifies a block of code that 
  is to be run multiple times. It will run while either the while condition is 
  met or until a break statement within the do block is run. While can also be 
  used to create a do/while statement that will test the condition at the end 
  of the loop instead of at the beginning. While is a reserved word and cannot 
  be used for anything other than declaring a while or do/while statement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Watch&lt;/strong&gt;; The watch method is available to all Javascript objects. 
  It is used to add a watch point to a property of that object. A watchpoint monitors 
  the property and can manipulate the value of the property if required. Watchpoints 
  are not automatically deleted when the object is deleted, it has to be removed 
  using unwatch first. This is not a reserved word so you can declare your own 
  variable or function called watch but if you do then you will not be able to 
  use the method .&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7738391558727161747?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7738391558727161747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7738391558727161747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7738391558727161747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7738391558727161747'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/03/watch-while-window-with-w3c.html' title='Watch-While-Window-With-W3C'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5191145746940782409</id><published>2010-02-25T08:36:00.000-08:00</published><updated>2010-02-25T08:37:05.891-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Other Examples-Application</title><content type='html'>&lt;h5&gt;Other Examples-Application&lt;/h5&gt;
&lt;p&gt;is Your Browser Support Java? - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/support-java.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Support JavaScript - is Your Browser Support Java"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Visiter Counter - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/counter.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Visiter Counter JavaScript Code"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Last Update Date - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/update-date.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Last Update Date Code"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Wep Page Refresh - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/refresh.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript refresh Wep Page Refresh Code"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Forbidden Right Click - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/forbidden-right-click.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Forbidden Right Click Java Code Example"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Email Control - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/email.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Check Email Control Code"&gt;Click 
  For View Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Document Print - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/printing.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Document Print Code Javascript Example"&gt;Click 
  For View Javascript Code&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5191145746940782409?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5191145746940782409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5191145746940782409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5191145746940782409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5191145746940782409'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/other-examples-application_25.html' title='Other Examples-Application'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6085235715662930172</id><published>2010-02-25T08:33:00.001-08:00</published><updated>2010-02-25T08:34:53.826-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Privacy Policy'/><title type='text'>Privacy Policy</title><content type='html'>&lt;h5&gt;Privacy Policy&lt;/h5&gt;
&lt;p&gt;At &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt;, 
  the privacy of our visitors is of extreme importance to us. This privacy policy 
  document outlines the types of personal information is received and collected 
  by &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt; 
  and how it is used.&lt;/p&gt;
&lt;p&gt;Cookies and Web Beacons&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt; 
  does use cookies to store information about visitors preferences, record user-specific 
  information on which pages the user access or visit, customize Web page content 
  based on visitors browser type or other information that the visitor sends via 
  their browser.&lt;/p&gt;
&lt;p&gt;DoubleClick DART Cookie&lt;/p&gt;
&lt;p&gt;Google, as a third party vendor, uses cookies to serve ads on &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Google's use of the DART cookie enables it to serve ads to users based on their 
  visit to &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt; 
  and other sites on the Internet.&lt;/p&gt;
&lt;p&gt;Users may opt out of the use of the DART cookie by visiting the Google ad and 
  content network privacy policy at the following URL - &lt;a href="http://www.google.com/privacy_ads.html" title="Adsense Privacy Policy" target="_blank"&gt;http://www.google.com/privacy_ads.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The third-party ad servers or ad networks use technology to the advertisements 
  and links that appear on &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt; 
  send directly to your browsers. They automatically receive your IP address when 
  this occurs. Other technologies (such as cookies, JavaScript, or Web Beacons) 
  may also be used by the third-party ad networks to measure the effectiveness 
  of their advertisements and / or to personalize the advertising content that 
  you see.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt; 
  has no access to or control over these cookies that are used by third-party 
  advertisers.&lt;/p&gt;
&lt;p&gt;You should consult the respective privacy policies of these third-party ad 
  servers for more detailed information on their practices as well as for instructions 
  about how to opt-out of certain practices. &lt;a href="http://javascript-lesson.blogspot.com" title="Adsense Privacy Policy"&gt;javascript-lesson.blogspot.com&lt;/a&gt;'s 
  privacy policy does not apply to, and we cannot control the activities of, such 
  other advertisers or web sites.&lt;/p&gt;
&lt;p&gt;If you wish to disable cookies, you may do so through your individual browser 
  options. More detailed information about cookie management with specific web 
  browsers can be found at the browsers' respective websites.&lt;/p&gt;
&lt;p&gt;If you require any more information or have any questions about our privacy 
  policy, please feel free to contact us by email at &lt;a href="mailto:ahmetyazgan1@gmail.com" title="Adsense Privacy Policy"&gt;Me&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6085235715662930172?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6085235715662930172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6085235715662930172' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6085235715662930172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6085235715662930172'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/privacy-policy.html' title='Privacy Policy'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3872681541379501344</id><published>2010-02-25T08:28:00.003-08:00</published><updated>2010-02-25T08:31:26.916-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Animation Examples-Application</title><content type='html'>&lt;h5&gt;Animation Examples-Application&lt;/h5&gt;
&lt;p&gt;Animation Counter 1-2-3-4-5 - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-1.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation Counter 1-2-3-4-5 example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animation - Blur Efect - Counter 1-2-3-4-5 - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-2.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation - Blur Efect - Counter 1-2-3-4-5 example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Random Text Application - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-4.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation example Random Text Application"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Text Application - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-6.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Text Application Javascript Animation example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animation Text - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-7.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation Text example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animation Text - Flying - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-8.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation Text - Flying example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animation Texts Application - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-9.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation Texts Application example"&gt;Click 
  For Examine Javascript Code&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Slide Text Application - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/animation-10.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation example Slide Text Application"&gt;Click 
  For Examine Javascript Code&lt;/a&gt; &lt;/p&gt;
&lt;p&gt; Typewriter Text Application - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/typewriter.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation example Typewriter Application"&gt;Click 
  For Examine Javascript Code&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3872681541379501344?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3872681541379501344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3872681541379501344' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3872681541379501344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3872681541379501344'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/animation-examples-application.html' title='Animation Examples-Application'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5516627740078430958</id><published>2010-02-25T08:28:00.001-08:00</published><updated>2010-02-25T08:31:31.549-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Date-Counter Calendar Examples-Applications</title><content type='html'>&lt;h5&gt;Date-Counter Calendar Examples-Applications&lt;/h5&gt;
 
&lt;p&gt;Date And Clock - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-1.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Date And Clock example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Date And Clock in Text Box - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-2.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Date And Clock in Text Box example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Calendar - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-3.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Calendar example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; You have been Visited Since ... &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-5.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript You have been Visited Since example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Only Clock - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-7.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Only Clock example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Only Date - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-8.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Only Date example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animation Time of Day - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-9.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animation Time of Day example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Clock on the Button - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-10.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Clock on the Button example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Date of Day - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/date-13.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Date of Day example"&gt;Click 
  For Javacscipt Codes&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5516627740078430958?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5516627740078430958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5516627740078430958' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5516627740078430958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5516627740078430958'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/date-counter-calendar-examples.html' title='Date-Counter Calendar Examples-Applications'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7825221754146185438</id><published>2010-02-25T08:27:00.000-08:00</published><updated>2010-02-25T08:31:37.006-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Background Examples-Application</title><content type='html'>&lt;h5&gt;Background Examples-Application&lt;/h5&gt;
&lt;p&gt;Change Background Color - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/background-1.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Change Background Color Application "&gt;Examine 
  This Application&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Animated Background Color - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/background-2.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Javascript Animated Background Color Application"&gt;Examine 
  This Application&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Your Visitors can be able change Background Color - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/background_color.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Your Visitors can be able change Background Color"&gt;Examine 
  This Application&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7825221754146185438?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7825221754146185438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7825221754146185438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7825221754146185438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7825221754146185438'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/background-examples-application.html' title='Background Examples-Application'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4016276287132274298</id><published>2010-02-25T08:26:00.000-08:00</published><updated>2010-02-25T08:31:40.589-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>StatusBar / TitleBar - Examples-Application</title><content type='html'>&lt;h5&gt;StatusBar / TitleBar - Examples-Application&lt;/h5&gt;
&lt;p&gt;Marquue Text on the Title Bar - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/status-bar-1.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Marquue Text on the Title Bar example"&gt;Examine 
  This Example&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Text on the Title Bar - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/status-bar-2.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Text on the Title Bar example"&gt;Examine 
  This Example&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Text on the Status Bar - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/status-bar-3.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Text on the Status Bar example"&gt;Examine 
  This Example&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Marquue Text on the Status Bar - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/status-bar-4.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Marquue Text on the Status Bar example"&gt;Examine 
  This Example&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Preceding :|: Following Button - &lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/Following.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="Preceding :|: Following Button"&gt;Examine 
  This Example&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4016276287132274298?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4016276287132274298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4016276287132274298' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4016276287132274298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4016276287132274298'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/statusbar-titlebar-examples-application.html' title='StatusBar / TitleBar - Examples-Application'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6514520049091272981</id><published>2010-02-01T10:46:00.001-08:00</published><updated>2010-11-27T08:47:54.026-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Js Function'/><title type='text'>The Return Statement</title><content type='html'>&lt;h4&gt;Javascript The Return Statement&lt;/h4&gt;
&lt;p&gt;Functions that will return a result, must use the return statement, this statement 
  specifies the value which will be returned to where the function was called 
  from.&lt;/p&gt;
&lt;p&gt;Code Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &lt;p&gt;function total(a,b) &lt;br&gt;
      { &lt;br&gt;
      result=a+b &lt;br&gt;
      return result &lt;br&gt;
  }&lt;/p&gt;&lt;/div&gt;



&lt;br&gt;&lt;br&gt;
 &lt;FIELDSET style="PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; PADDING-TOP: 2px"&gt;
        
&lt;LEGEND&gt;&lt;strong&gt;These may interest you »»&lt;/strong&gt;&lt;/LEGEND&gt;



[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/using-no-arguments.html" title="Javascript - Using No Arguments"&gt;Javascript Function - Using No Arguments&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/calling-functions-how-to-call-function.html" title="Calling Functions - How to Call a Function - Arguments"&gt;Calling Functions - How to Call a Function - Arguments&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-functions.html" title="Javascript Functions"&gt;Javascript Functions&lt;/a&gt;] 
  
&lt;/FIELDSET&gt;
&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6514520049091272981?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6514520049091272981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6514520049091272981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6514520049091272981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6514520049091272981'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/return-statement.html' title='The Return Statement'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-4263092714407797394</id><published>2010-02-01T10:44:00.002-08:00</published><updated>2010-11-27T08:47:47.024-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Js Function'/><title type='text'>Using No Arguments</title><content type='html'>&lt;h4&gt;Javascript - Using No Arguments&lt;/h4&gt;
&lt;p&gt;Here is example:&lt;/p&gt;
&lt;p&gt;Code Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &lt;p&gt;&amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;script language=&amp;quot;Javascript&amp;quot;&amp;gt;&lt;br&gt;
      function example()&lt;br&gt;
      {&lt;br&gt;
      alert(&amp;quot;Hello Javascript&amp;quot;);&lt;br&gt;
      }&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;form name=&amp;quot;form1&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;Click Here&amp;quot; onclick=&amp;quot;example()&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;/form&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/p&gt;&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
 &lt;FIELDSET style="PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; PADDING-TOP: 2px"&gt;
        
&lt;LEGEND&gt;&lt;strong&gt;These may interest you »»&lt;/strong&gt;&lt;/LEGEND&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/return-statement.html" title="Javascript The Return Statement"&gt;Javascript Function - The Return Statement&lt;/a&gt;] &lt;br&gt;



[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/calling-functions-how-to-call-function.html" title="Calling Functions - How to Call a Function - Arguments"&gt;Calling Functions - How to Call a Function - Arguments&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-functions.html" title="Javascript Functions"&gt;Javascript Functions&lt;/a&gt;] 
  
&lt;/FIELDSET&gt;
&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-4263092714407797394?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/4263092714407797394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=4263092714407797394' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4263092714407797394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/4263092714407797394'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/using-no-arguments.html' title='Using No Arguments'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-9042544248515140520</id><published>2010-02-01T10:44:00.001-08:00</published><updated>2010-11-27T08:47:37.447-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Js Function'/><title type='text'>Calling Functions - How to Call a Function - Arguments</title><content type='html'>&lt;h4&gt;Javascript - Calling Functions&lt;/h4&gt;
&lt;h4&gt;How to Call a Javascript Function&lt;/h4&gt;
&lt;p&gt; function is not executed before it is called. You can call a function containing 
  arguments or without arguments.&lt;/p&gt;
&lt;p&gt;Javascript  Arguments&lt;/p&gt;
&lt;p&gt; You can pass arguments to a function&lt;/p&gt;
&lt;p&gt; Here is example:&lt;/p&gt;
&lt;p&gt;Code Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &lt;p&gt;&amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;script language=&amp;quot;Javascript&amp;quot;&amp;gt;&lt;br&gt;
      function example(param)&lt;br&gt;
      {&lt;br&gt;
      alert(param);&lt;br&gt;
      }&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;form name=&amp;quot;form1&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;Click Here&amp;quot; onclick=&amp;quot;example(‘hello 
      javascript’)&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;/form&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;
  
  &lt;/p&gt;&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
 &lt;FIELDSET style="PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; PADDING-TOP: 2px"&gt;
        
&lt;LEGEND&gt;&lt;strong&gt;These may interest you »»&lt;/strong&gt;&lt;/LEGEND&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/return-statement.html" title="Javascript The Return Statement"&gt;Javascript Function - The Return Statement&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/using-no-arguments.html" title="Javascript - Using No Arguments"&gt;Javascript Function - Using No Arguments&lt;/a&gt;] &lt;br&gt;



[&lt;a href="http://javascript-lesson.blogspot.com/2008/02/javascript-functions.html" title="Javascript Functions"&gt;Javascript Functions&lt;/a&gt;] 
  
&lt;/FIELDSET&gt;
&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-9042544248515140520?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/9042544248515140520/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=9042544248515140520' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9042544248515140520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/9042544248515140520'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2010/02/calling-functions-how-to-call-function.html' title='Calling Functions - How to Call a Function - Arguments'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-5926610006532610724</id><published>2008-04-09T16:17:00.001-07:00</published><updated>2010-07-12T14:09:53.930-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Placing Code'/><title type='text'>Placing Code</title><content type='html'>&lt;h5&gt;Javascript Placing Code&lt;/h5&gt;
&lt;p&gt; When you want to place the script somewhere in the HTML document, you need 
  to choose where to put it. Technically, you may place it anywhere between the 
  &amp;lt;HTML&amp;gt; and &amp;lt;/HTML&amp;gt; tags that enclose the whole document. Actually, 
  the two possibilityes are the &amp;lt;HEAD&amp;gt;&amp;lt;/HEAD&amp;gt; portion and the &amp;lt;BODY&amp;gt;&amp;lt;/BODY&amp;gt; 
  portion. Because the &amp;lt;HEAD&amp;gt;&amp;lt;/HEAD&amp;gt; portion is evaluated first, some 
  developers choose to place their JavaScript here. A single HTML document may 
  contain any number of scripts. You can place some of the scripts in the &amp;lt;HEAD&amp;gt;&amp;lt;/HEAD&amp;gt; 
  portion and others in the &amp;lt;BODY&amp;gt;&amp;lt;/BODY&amp;gt; portion of the page. &lt;br&gt;
  &lt;br&gt;
  The following code demonstrates this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/07/script-in-body.html" title="A Script in the Body"&gt;A Script in the Body&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/07/scripts-in-head.html" title="Scripts in the Head"&gt;Scripts in the Head&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/07/scripts-in-head-and-body.html" title="Scripts in the Head and Body"&gt;Scripts in the Head and Body&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/07/placing-javascript-code-in-another-file.html" title="Placing JavaScript code in another file"&gt;Placing JavaScript code in another file&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-5926610006532610724?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/5926610006532610724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=5926610006532610724' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5926610006532610724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/5926610006532610724'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/04/placing-code.html' title='Placing Code'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3984045598701749538</id><published>2008-04-09T15:55:00.000-07:00</published><updated>2010-02-25T08:37:48.680-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Examples'/><title type='text'>Examples Applications Free Codes</title><content type='html'>&lt;strong&gt;All of this Applications run in Mozilla Firefox and internet Explorer 
&lt;/strong&gt;

&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/02/other-examples-application_25.html" title="Other  Examples-Application"&gt;Other  Examples-Application&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/02/animation-examples-application.html" title="Animation Examples-Application"&gt;Animation Examples-Application &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/02/date-counter-calendar-examples.html" title="Date-Counter Calendar Examples-Applications"&gt;Date-Counter Calendar Examples-Applications&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/02/background-examples-application.html" title="Background Examples-Application"&gt;Background Examples-Application&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/02/statusbar-titlebar-examples-application.html" title="StatusBar / TitleBar - Examples-Application"&gt;StatusBar / TitleBar - Examples-Application&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3984045598701749538?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3984045598701749538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3984045598701749538' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3984045598701749538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3984045598701749538'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/04/examples.html' title='Examples Applications Free Codes'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-3504622546388686906</id><published>2008-02-18T12:09:00.001-08:00</published><updated>2010-11-27T08:46:59.594-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Js Function'/><title type='text'>Functions</title><content type='html'>&lt;h4&gt;Javascript Functions&lt;/h4&gt;
&lt;p&gt;Code Syntax:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
 &lt;p&gt; function functionname ( 1, argument2, argument3..... argument_n) &lt;br&gt;
      {&lt;br&gt;
      Statement1;&lt;br&gt;
      Statement2;&lt;br&gt;
      Statement3;&lt;br&gt;
  }&lt;/p&gt;&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
 &lt;FIELDSET style="PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; PADDING-TOP: 2px"&gt;
        
&lt;LEGEND&gt;&lt;strong&gt;These may interest you »»&lt;/strong&gt;&lt;/LEGEND&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/return-statement.html" title="Javascript The Return Statement"&gt;Javascript Function - The Return Statement&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/using-no-arguments.html" title="Javascript - Using No Arguments"&gt;Javascript Function - Using No Arguments&lt;/a&gt;] &lt;br&gt;

[&lt;a href="http://javascript-lesson.blogspot.com/2010/02/calling-functions-how-to-call-function.html" title="Calling Functions - How to Call a Function - Arguments"&gt;Calling Functions - How to Call a Function - Arguments&lt;/a&gt;] 
 
  
&lt;/FIELDSET&gt;
&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-3504622546388686906?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/3504622546388686906/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=3504622546388686906' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3504622546388686906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/3504622546388686906'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-functions.html' title='Functions'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-7301739067127070922</id><published>2008-02-18T10:56:00.000-08:00</published><updated>2010-11-27T09:10:50.248-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Event'/><title type='text'>Events</title><content type='html'>&lt;h4&gt;JavaScript Events&lt;/h4&gt;
&lt;p&gt;1. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onclick-event.html" title="onclick"&gt;onclick 
  : An object was clicked.&lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  2. ondblclick An object was Double clicked.&lt;br&gt;
  &lt;br&gt;
  3. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onmouseover-onmouseout-event.html" title="onmouseover"&gt;onmouseover 
  : The mouse is moved over a link. &lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  4. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onmouseover-onmouseout-event.html" title="onmouseout"&gt;onmouseout 
  : The mouse is moved from on top a link.&lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  5. onmousedown : The mouse button is pressed. &lt;br&gt;
  &lt;br&gt;
  6. onmouseup : when the mouse button is released. &lt;br&gt;
  &lt;br&gt;
  7. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onload-onunload-event.html" title="onload"&gt;onload 
  : The object was loaded.&lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  8. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onload-onunload-event.html" title="onunload"&gt;onunload 
  : The object was unloaded.&lt;/a&gt; &lt;br&gt;
  &lt;br&gt;
  9. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onchange-event.html" title="onchange"&gt;onchange 
  : An element lost the focus since it was changed.&lt;/a&gt; &lt;br&gt;
  &lt;br&gt;
  10. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onsubmit-event.html" title="onsubmit"&gt;onsubmit 
  : The user submitted an object, usually a form.&lt;/a&gt; &lt;br&gt;
  &lt;br&gt;
  11. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onreset-event.html" title="onreset"&gt;onreset 
  : The user reset the object, usually a form.&lt;/a&gt; &lt;br&gt;
  &lt;br&gt;
  12. onselect : Some text is selected.&lt;br&gt;
  &lt;br&gt;
  13. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onfocus-onblur-event.html" title="onblur"&gt;onblur 
  : The input focus was lost.&lt;/a&gt; &lt;br&gt;
  &lt;br&gt;
  14. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onfocus-onblur-event.html" title="onfocus"&gt;onfocus 
  : The input focus was obtained. &lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  15. OnKeyPress : when a keyboard key is pressed or held down&lt;br&gt;
  &lt;br&gt;
  16. onkeyup : when a keyboard key is released&lt;br&gt;
  &lt;br&gt;
  17. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onerror-onabort-event.html" title="Onerror"&gt;Onerror: 
  An error occurred.&lt;/a&gt;&lt;br&gt;
  &lt;br&gt;
  18. &lt;a href="http://javascript-lesson.blogspot.com/2010/11/onerror-onabort-event.html" title="Onabort"&gt;Onabort: 
  A user action caused an abort.&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-7301739067127070922?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/7301739067127070922/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=7301739067127070922' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7301739067127070922'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/7301739067127070922'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-events.html' title='Events'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8698135089022100189</id><published>2008-02-18T10:39:00.000-08:00</published><updated>2010-11-27T08:45:50.881-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Comments'/><title type='text'>Comments Add Comment</title><content type='html'>&lt;h4&gt;Javascript Comments&lt;/h4&gt;
A comment is text in your code that is not displayed and interpreted by the browser.&lt;br&gt;
&lt;br&gt;  There are two ways you can write a comment.&lt;br&gt;
&lt;br&gt;  1. You can start a comment with two forward slashes //. Everything on the right 
  side of // is part of the comment. &lt;br&gt;
&lt;br&gt;
Here is an example: &lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;!--&lt;br&gt;
        &lt;font color="#FF0000"&gt;// This line is ignored. You can write it however 
        you want&lt;/font&gt;. &lt;/p&gt;
      &lt;p&gt;document.write(&amp;quot;You have comments in your Javascript code.&amp;quot;);&lt;br&gt;
        &lt;font color="#FF0000"&gt;//document.write(&amp;quot;You can't see this!!&amp;quot;);&lt;br&gt;
        //--&amp;gt;&lt;/font&gt;&lt;br&gt;
    &amp;lt;/script&amp;gt;&lt;/div&gt;
 
Display:&lt;br&gt;
&lt;br&gt;
  You have comments in your Javascript code.&lt;br&gt;
  2. You can start a comment with /* and end it with */. Everything between /* 
  and */ is part of the comment. &lt;br&gt;
 &lt;br&gt;
Here is an example:&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;SCRIPT LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br&gt;
        &lt;font color="#FF0000"&gt;/* This line is ignored. You can write it however 
        you want */&lt;/font&gt;&lt;br&gt;
        document.write(&amp;quot;You have comments in your Javascript code.&amp;quot;);&lt;br&gt;
        &lt;font color="#FF0000"&gt;/*document.write(&amp;quot;You can't see this!!&amp;quot;);*/&lt;/font&gt;&lt;/p&gt;
      
  &lt;p&gt;&amp;lt;/SCRIPT&amp;gt;&lt;/div&gt;
Display:&lt;br&gt;
&lt;br&gt;You have comments in your Javascript code.&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8698135089022100189?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8698135089022100189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8698135089022100189' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8698135089022100189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8698135089022100189'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-comments.html' title='Comments Add Comment'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6093292767452113941</id><published>2008-02-18T10:31:00.000-08:00</published><updated>2010-06-29T10:34:15.400-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Conditionals-looping'/><title type='text'>Conditionals Looping</title><content type='html'>&lt;h5&gt;Conditionals-looping&lt;/h5&gt;




&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/break-continue.html" title="Conditionals-looping"&gt;Javascript 
  Break / Continue&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/ifelse-statement.html" title="Conditionals-looping"&gt;Javascript 
  The If….else statement&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/switch-condition.html" title="Conditionals-looping"&gt;Javascript 
  Switch Condition &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/do-while.html" title="Conditionals-looping"&gt;Javascript 
  do-while&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/while.html" title="Conditionals-looping"&gt;Javascript 
  while&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/for.html" title="Conditionals-looping"&gt;Javascript 
  For&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/06/for-in.html" title="Conditionals-looping"&gt;Javascript 
  for-in&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6093292767452113941?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6093292767452113941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6093292767452113941' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6093292767452113941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6093292767452113941'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/conditionals-looping.html' title='Conditionals Looping'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2794729719560026384</id><published>2008-02-18T10:23:00.000-08:00</published><updated>2010-11-27T08:45:17.470-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hiding the JavaScript'/><title type='text'>Hiding the JavaScript</title><content type='html'>&lt;h4&gt;Hiding the JavaScript&lt;/h4&gt;
Older browsers that do not support scripts will display the script as page content. 
To prevent them from doing this, you can use the HTML comment tag: &lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script language=&amp;quot;JavaScript&amp;quot;&amp;gt; &lt;br&gt;
   &amp;lt;!-- &lt;br&gt;
      Your JavaScript codes here &lt;br&gt;
      //--&amp;gt; &lt;br&gt;
  &amp;lt;/script&amp;gt;&lt;/div&gt;
&lt;br&gt;The two forward slashes on front of the end of comment line (//--&amp;gt;) are 
  a JavaScript comment symbol, and prevent the JavaScript from trying to compile 
  the line.&lt;br&gt;
&lt;br&gt;Note that you cannot put // in front of the first comment line (like //&amp;lt;!--), 
  because older browser will display it. &lt;br&gt;
&lt;br&gt;
Alternate Content&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
        document.write('&amp;lt;b&amp;gt;Hello Javascript &amp;lt;/b&amp;gt;');&lt;br&gt;
        &amp;lt;/script&amp;gt;&lt;br&gt;
  &amp;lt;noscript&amp;gt;This page uses Javascript. Your browser doesn't support Javascript 
  &amp;lt;/noscript&amp;gt; &lt;/div&gt;
&lt;br&gt; In this example &amp;quot;Hello Javascript World&amp;quot; will be displayed in the 
  page when the browser supports Javascript . If the browser doesn't support Javascript 
  then &amp;quot;This page uses Javascript. Your browser doesn't support Javascript&amp;quot; 
  will be displayed instead. &lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2794729719560026384?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2794729719560026384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2794729719560026384' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2794729719560026384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2794729719560026384'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/hiding-javascript.html' title='Hiding the JavaScript'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8628549032511899678</id><published>2008-02-18T10:06:00.000-08:00</published><updated>2010-11-27T08:45:02.361-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date object'/><title type='text'>Date Time Object calendar</title><content type='html'>&lt;h5&gt;Javascript The Date object&lt;/h5&gt;
&lt;p&gt;The Date object is one of JavaScripts built-in objects. It is used to return 
  a date. To do this you must declare a variable:&lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; mydate=new Date()&lt;/div&gt;
&lt;p&gt; You can write a date inside the parentheses, if not, the &amp;quot;mydate&amp;quot; 
  variable contains today's date, see the Date() example below. Now you can access 
  all the methods in the Date object from this variable.&lt;/p&gt;
&lt;p&gt; Example: &lt;/p&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; mydate.getDay()&lt;/div&gt;



&lt;p&gt;
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/redirect-example.html" title="Redirect Example"&gt;Javascript Redirect Example&lt;/a&gt; ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods-example.html" title="Date Object Methods Example"&gt;Javascript Date Object Methods Example&lt;/a&gt;  ] 
[ &lt;a href="http://javascript-lesson.blogspot.com/2010/10/date-object-methods.html" title="Date Object Methods"&gt;Javascript Date Object Methods&lt;/a&gt; ] 
 
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8628549032511899678?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8628549032511899678/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8628549032511899678' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8628549032511899678'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8628549032511899678'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-date-object.html' title='Date Time Object calendar'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8468799529280019378</id><published>2008-02-18T07:46:00.001-08:00</published><updated>2010-11-27T08:44:49.024-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Prompt Method'/><title type='text'>Prompt Method example</title><content type='html'>&lt;h4&gt;window.prompt() method&lt;/h4&gt;
The prompt() method displays a prompt dialog box with a message and an input field. 
You can use these boxes to receive input from the user.&lt;br&gt;
&lt;br&gt;


&lt;img src="http://4.bp.blogspot.com/_AB693zUP138/R7m-y_cJiLI/AAAAAAAAAKo/yo9qAFRSFwY/s320/prompt-javascript.JPG" alt="javascript prompt method" width="350" height="100" border="0"id="BLOGGER_PHOTO_ID_5168371830616590514" style="display:block; margin:0px auto 10px; text-align:center;" /&gt; 
&lt;br&gt;Here is an example :&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
        &amp;lt;head&amp;gt;&lt;br&gt;
        &amp;lt;title&amp;gt;Prompt Application &amp;lt;/title&amp;gt;&lt;br&gt;
        &amp;lt;/head&amp;gt;&lt;br&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
        function load()&lt;br&gt;
        {&lt;br&gt;
        var x=window.prompt (&amp;quot;Your Name : &amp;quot; , &amp;quot;Please write your 
        name&amp;quot;);&lt;br&gt;
        &lt;br&gt;
        window.alert(x)&lt;br&gt;
        }&lt;br&gt;
        &amp;lt;/script&amp;gt;&lt;br&gt;
        &amp;lt;body&amp;gt;&lt;br&gt;
        &amp;lt;form name=&amp;quot;form1&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;input type=&amp;quot;submit&amp;quot; name=&amp;quot;Submit&amp;quot; value=&amp;quot;Click 
        Here&amp;quot; onClick=&amp;quot;load()&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;/form&amp;gt;&lt;br&gt;
        &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8468799529280019378?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8468799529280019378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8468799529280019378' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8468799529280019378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8468799529280019378'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-prompt-method.html' title='Prompt Method example'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_AB693zUP138/R7m-y_cJiLI/AAAAAAAAAKo/yo9qAFRSFwY/s72-c/prompt-javascript.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2591533018112121681</id><published>2008-02-18T07:24:00.001-08:00</published><updated>2010-11-27T08:44:38.739-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Alert Method'/><title type='text'>Alert Method example</title><content type='html'>&lt;h4&gt;window.alert() method&lt;/h4&gt;
This method generates a dialog box that displays whatever text you pass as a Parameter. 
&lt;br&gt;
A single OK button (whose label you cannot change) enables the user to dismiss 
the alert.&lt;br&gt;
&lt;br&gt;
 &lt;img style="display:block; margin:0px auto 10px; text-align:center; " src="http://1.bp.blogspot.com/_AB693zUP138/R7mlUPcJiHI/AAAAAAAAAKI/tqXwRWMFPFg/s320/alert-javascript.JPG" border="0" alt="Javascript Aler Method" id="BLOGGER_PHOTO_ID_5168343814544918642" /&gt;


&lt;br&gt;
Here is an example :&lt;br&gt;
&lt;br&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
      function load()&lt;br&gt;
      {&lt;br&gt;
      alert(&amp;quot;Wellcome My Javascript Site&amp;quot;);&lt;br&gt;
      }&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body onload=&amp;quot;load()&amp;quot;&amp;gt;&lt;br&gt; 
      &amp;lt;/body&amp;gt;&lt;br&gt; &amp;lt;/html&amp;gt;&lt;/div&gt;


&lt;br&gt;&lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/alert.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript alert application"&gt;Examine this javacript example&lt;/a&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2591533018112121681?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2591533018112121681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2591533018112121681' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2591533018112121681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2591533018112121681'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-alert-method.html' title='Alert Method example'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_AB693zUP138/R7mlUPcJiHI/AAAAAAAAAKI/tqXwRWMFPFg/s72-c/alert-javascript.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6531486932069307650</id><published>2008-02-18T07:13:00.001-08:00</published><updated>2010-11-27T08:44:28.707-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Confirm Method'/><title type='text'>Confirm Method example</title><content type='html'>&lt;h4&gt;window.confirm() method&lt;/h4&gt;
This dialog box presents two buttons (Cancel and OK ) and is called a confirm 
dialog box&lt;br&gt;
&lt;br&gt;
&lt;img style="display:block; margin:0px auto 10px; text-align:center;" src="http://4.bp.blogspot.com/_AB693zUP138/R7mnN_cJiJI/AAAAAAAAAKY/Xga9sKS9Tng/s320/confirm-javascript.JPG" border="0" alt="Javascript Confirm Method" id="BLOGGER_PHOTO_ID_5168345906193991826" /&gt;

&lt;br&gt;This method returns a Boolean value, because there are two options. You can 
  use confirmation boxes to ask the user a yes-or-no question, or to confirm an 
  action.&lt;br&gt;
&lt;br&gt;value: true if OK was clicked, false if Cancel was clicked.&lt;br&gt;
&lt;br&gt;
Here is an example :&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  &amp;lt;a href=&amp;quot;http://javascript-lessons.blospot.com&amp;quot; onclick=&amp;quot;return 
  window.confirm('Do you want to go to MainPage');&amp;quot;&amp;gt;Return MainPage&amp;lt;/a&amp;gt;&lt;/div&gt;
&lt;br&gt;&lt;a href="javascript:MM_openBrWindow('http://css-lessons.ucoz.com/javascript/confirm.htm','_blank','menubar=no,scrollbars=no,width=450,height=515')" title="javascript Confirm application"&gt;Examine this javacript example&lt;/a&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6531486932069307650?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6531486932069307650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6531486932069307650' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6531486932069307650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6531486932069307650'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-confirm-method.html' title='Confirm Method example'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_AB693zUP138/R7mnN_cJiJI/AAAAAAAAAKY/Xga9sKS9Tng/s72-c/confirm-javascript.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-8361926396991739627</id><published>2008-02-18T07:01:00.001-08:00</published><updated>2010-11-27T08:44:18.417-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='write and writeln'/><title type='text'>document write and writeln</title><content type='html'>&lt;h4&gt;write and writeln&lt;/h4&gt;
The document.write method displays any number of expressions in a document window.&lt;br&gt;
  Expressions to be printed can be of any type, including numerics, strings, and&lt;br&gt;
  logicals.&lt;br&gt;
&lt;br&gt;
Sytnax:&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  document.write (&amp;quot;Your Sentence&amp;quot; , variable_name );&lt;/div&gt;
 
 
&lt;br&gt;The writeln() method acts exactly like the write() method, except that it appends 
  a&lt;br&gt;
  new line character to the end of the output. HTML generally ignores this character,&lt;br&gt;
but certain tags, such as &amp;lt;PRE&amp;gt;, use it:&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;PRE&amp;gt;&lt;br&gt;
      one&lt;br&gt;
      two&lt;br&gt;
      three&lt;br&gt;
  &amp;lt;/PRE&amp;gt;&lt;/div&gt;


&lt;br&gt;After interpretation, the web page appears as:&lt;br&gt;
&lt;br&gt;one&lt;br&gt;
  two&lt;br&gt;
  three&lt;br&gt;
&lt;br&gt;
You can create the same output via JavaScript in the following fashion:&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt;  
  document.write(&amp;quot;&amp;lt;PRE&amp;gt;&amp;quot;)&lt;br&gt;
      document.writeln(&amp;quot;one&amp;quot;)&lt;br&gt;
      document.writeln(&amp;quot;two&amp;quot;)&lt;br&gt;
      document.writeln(&amp;quot;three&amp;quot;)&lt;br&gt;
  document.write(&amp;quot;&amp;lt;/PRE&amp;gt;&amp;quot;)&lt;/div&gt;


&lt;br&gt;
Other Example :&lt;br&gt;
&lt;br&gt;
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;Html&amp;gt;&lt;br&gt;
        &amp;lt; head&amp;gt; &lt;br&gt;
        &amp;lt;SCRIPT language=&amp;quot;JavaScript&amp;quot;&amp;gt; &lt;br&gt;
        var ad= prompt('Please Write Your Name', ' '); if ( (ad==' ') || (ad==null) 
        ) &lt;br&gt;
        { &lt;br&gt;
        ad=&amp;quot;YourName&amp;quot;; &lt;br&gt;
        } &lt;br&gt;
        &amp;lt;/SCRIPT&amp;gt; &lt;br&gt;
        &amp;lt;/HEAD&amp;gt; &lt;br&gt;
        &amp;lt;BODY&amp;gt; &lt;br&gt;
        &amp;lt;SCRIPT language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br&gt;
        document.write(&amp;quot;&amp;lt;CENTER&amp;gt;&amp;lt;H1&amp;gt;Hello, &amp;quot; + ad + &amp;quot; 
        ! Wellcome Javascript Lessons &amp;lt;\/H1&amp;gt;&amp;lt;\/CENTER&amp;gt;&amp;quot;);&lt;br&gt;
        &amp;lt;/SCRIPT&amp;gt;&lt;br&gt;
        &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-8361926396991739627?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/8361926396991739627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=8361926396991739627' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8361926396991739627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/8361926396991739627'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/write-and-writeln.html' title='document write and writeln'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-1262267183626059605</id><published>2008-02-18T06:38:00.000-08:00</published><updated>2010-12-10T11:09:45.163-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Operators'/><title type='text'>Operators</title><content type='html'>&lt;h4&gt;Javascript Operator Categories&lt;/h4&gt;
&lt;p&gt;JavaScript has many operators.&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/mathematical-operators.html" title="Mathematical"&gt;Mathematical operators&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/operators-precedence.html" title="Operators Precedence"&gt;Javascript Operators Precedence&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/comparison-operators.html" title="Comparison Operators"&gt;Comparison Operators &lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/string-operators.html" title="String operators"&gt;String operators&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/assignment-operators.html" title="Assignment operators"&gt;Assignment operators&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/logical-operators.html" title="Logical Operators"&gt;JavaScript Logical Operators&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/special-operators.html" title="Special Operators"&gt;JavaScript Special Operators&lt;/a&gt;&lt;br&gt;
&lt;a href="http://javascript-lesson.blogspot.com/2010/12/bitwise-operators.html" title="Bitwise"&gt;Bitwise operators&lt;/a&gt; 
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-1262267183626059605?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/1262267183626059605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=1262267183626059605' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1262267183626059605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/1262267183626059605'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-operators.html' title='Operators'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-6290606673179047008</id><published>2008-02-17T18:32:00.001-08:00</published><updated>2010-08-23T06:47:42.053-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Variable'/><title type='text'>What is a Variable</title><content type='html'>&lt;h5&gt;What is a Javascript Variable? &lt;/h5&gt;
&lt;p&gt;A variable's purpose is to store information so that it can be used later.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://javascript-lesson.blogspot.com/2010/08/types-of-javascript-variables.html" title="Types of Javascript Variables"&gt;Types of Javascript Variables&lt;/a&gt;&lt;br&gt;
  &lt;a href="http://javascript-lesson.blogspot.com/2010/08/rules-for-javascript-variable-names.html" title="Rules for Javascript Variable names"&gt;Rules for Javascript Variable names&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-6290606673179047008?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/6290606673179047008/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=6290606673179047008' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6290606673179047008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/6290606673179047008'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/javascript-variable.html' title='What is a Variable'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4211353490474568885.post-2932835347823171445</id><published>2008-02-17T18:12:00.001-08:00</published><updated>2010-11-27T08:43:25.922-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='When JS Statements Run'/><title type='text'>When JS Statements Run</title><content type='html'>&lt;h4&gt;When Javascript Statements Run &lt;/h4&gt;

  1.While a document loads&lt;br&gt;
  2.Immediately after a document loads&lt;br&gt;
  3.Running a Script from User Action&lt;br&gt;
  4.When called upon by other script statements.&lt;br&gt;
&lt;h4&gt;1.While a document loads&lt;/h4&gt;
&lt;br&gt;
Here is example:&lt;br&gt;
&lt;br&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;HTML&amp;gt;&lt;br&gt;
   &amp;lt;HEAD&amp;gt;&lt;br&gt; &amp;lt;TITLE&amp;gt; When Javascript Statements 
      Run &amp;lt;/TITLE&amp;gt;&lt;br&gt; &amp;lt;SCRIPT LANGUAGE=”JavaScript”&amp;gt;&lt;br&gt; &amp;lt;!--&lt;br&gt;
      function done() {&lt;br&gt;
      alert(“The page has finished loading.”)&lt;br&gt;
      }&lt;br&gt;
      // --&amp;gt;&lt;br&gt; &amp;lt;/SCRIPT&amp;gt;&lt;br&gt; &amp;lt;/HEAD&amp;gt;&lt;br&gt; &amp;lt;BODY onLoad=”done()”&amp;gt;&lt;br&gt; 
      &amp;lt;/BODY&amp;gt;&lt;br&gt;
  &amp;lt;/HTML&amp;gt;&lt;/div&gt;
&lt;h4&gt;2.Immediately after a document loads&lt;/h4&gt;
 
Here is example:&lt;br&gt;
&lt;br&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt;When Javascript Statements 
      Run &amp;lt;/title&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;script&amp;gt;&lt;br&gt; 
      &amp;lt;!--&lt;br&gt;
      document.write(&amp;quot;When Javascript Statements Run:&amp;quot;);&lt;br&gt;
      --&amp;gt;&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;
&lt;h4&gt; 3.Running a Script from User Action&lt;/h4&gt;
 
Here is example:&lt;br&gt;
&lt;br&gt;
 
&lt;div  align="center" style="border: 1px dashed black; padding: 10px;"&gt; 
  &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt; &amp;lt;title&amp;gt; When Javascript Statements 
      Run &amp;lt;/title&amp;gt;&lt;br&gt; &amp;lt;script type=”text/javascript”&amp;gt;&lt;br&gt; &amp;lt;!--&lt;br&gt;
      function alertUser() {&lt;br&gt;
      alert(“Ouch!”);&lt;br&gt;
      }&lt;br&gt;
      // --&amp;gt;&lt;br&gt; &amp;lt;/script&amp;gt;&lt;br&gt; &amp;lt;/head&amp;gt;&lt;br&gt; &amp;lt;body&amp;gt;&lt;br&gt; &amp;lt;form&amp;gt;&lt;br&gt; 
      &amp;lt;input type=”text” name=”entry”&amp;gt;&lt;br&gt; &amp;lt;input type=”button” name=”oneButton” 
      value=”Run Javascript Statements” onclick=”alertUser()”&amp;gt;&lt;br&gt; &amp;lt;/form&amp;gt;&lt;br&gt; 
      &amp;lt;/body&amp;gt;&lt;br&gt;
  &amp;lt;/html&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4211353490474568885-2932835347823171445?l=javascript-lesson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://javascript-lesson.blogspot.com/feeds/2932835347823171445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4211353490474568885&amp;postID=2932835347823171445' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2932835347823171445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4211353490474568885/posts/default/2932835347823171445'/><link rel='alternate' type='text/html' href='http://javascript-lesson.blogspot.com/2008/02/when-javascript-statements-run.html' title='When JS Statements Run'/><author><name>Bloglarim</name><uri>http://www.blogger.com/profile/06232925571705397327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://3.bp.blogspot.com/-N9MaFQcyuYM/TsAIq5XR1HI/AAAAAAAAGYQ/JatcrlZHs2U/s220/bebeklik.jpg'/></author><thr:total>0</thr:total></entry></feed>
