<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Coding/Scripting</title>
		<link>http://dmaforum.forumotion.net/coding-scripting-f5/-t1.htm</link>
		<description>Topics related to HTML, ASP, XHTML, Javascript, etc.</description>
		<lastBuildDate>Thu, 10 Sep 2009 21:15:19 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Coding/Scripting</title>
			<url>http://www.dmaclasses.com/ForumHeader.jpg</url>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/-t1.htm</link>
		</image>
		<item>
			<title>Intro to JQuery</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>



JQuery is a Javascript library that defines functions in order to facilitate working with javascript. I fixes the many browsers inconsistencies too. It has to developed into a very popular library today. It has a huge community of developers using it and supporting it.

JQuery

1.	In order to use the Library you will have to include it in your documents as so:

&lt;script type=”text/javascript” src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&quot;&gt;&lt;/script&gt;



2.	Jquery  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 10 Sep 2009 21:15:19 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm#101</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm</guid>
		</item>
		<item>
			<title>Javascript Objects.</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>All of the programming objects group collections of properties and functions into Objects. Javascript is no different. It has its native language objects and it gives us the ability to create our own custom objects. We can create one just as any other variable and adding values within curly brackets. An object in Javascript is created like this:



Code:&lt;script type=&quot;text/javascript&quot;&gt;



var myObject = &#123;&#125;;



&lt;/script&gt;





To add Properties and Methods;  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Sat, 22 Aug 2009 17:17:26 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm#100</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm</guid>
		</item>
		<item>
			<title>Javascript Loops!</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Javascript Loops



Loops are a must know in Javascript. Loops are important because it allows us to perform repetitive tasks without having to write a lot of code.



The most well-known and most used loop is the &quot;for loop&quot;. The syntax for a &quot;for loop&quot; is:



Code:for&#40;var i = 0; i &lt; 10; i++&#41;

&#123;

 Here goes the code to be executed.

&#125;



Another loop is the &quot;while loop&quot;. The while loop will keep on running until the expression  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 23 Jul 2009 18:11:04 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm#97</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm</guid>
		</item>
		<item>
			<title>Jabry.com ASP</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Jabry.com is a free web hosting company. I visited the site today and created a free account with them. They will give you a space with a subdomain name on their server for free. I'm posting this because this company offers ASP server side scripting with Microsoft Acces Databasing. This will be useful for those who are taking DMA211 or DMA212 (the ASP classes). Many of the students are asking how do they go about using ASP in real life projects. This should give you practice with creating a website  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Fri, 19 Jun 2009 04:10:48 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm#93</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm</guid>
		</item>
		<item>
			<title>Array in Javascript</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Array



Javascript contains an Array Object. An Array is an object that can contain multiple sets of data. The multiple sets of data can be different types of data. For example: An Array can contain Strings and Numbers or booleans.



An Array is created just as any other variable is.





Code:var myArray = new Array&#40;&#41;;



An Array can also be created with the bracket alone. Like this:



Code:var myArray = &#91;&#93;;



The values can be set like this:



Code:var myArray  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Wed, 17 Jun 2009 21:03:17 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm#92</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm</guid>
		</item>
		<item>
			<title>Javascript Functions - How do they work?</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Today I just felt like writing about functions.



Functions:



Functions are a very important part of any programming language. Functions allow a programmer to create a reusable block or piece of code. Meaning that you can create a piece of code that can be used in many different places without having to write the whole code over again. I think that an example will clear things up.



To create a function we must declare it with the function keyword, followed by a custom name that you  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Wed, 10 Jun 2009 21:47:57 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm#90</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm</guid>
		</item>
		<item>
			<title>Javascript basics - Variables</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Variables



Javascript is a browser scripting language that adds interactivity to the static html pages. The thing is that you can't create the awsome effects and menus without first learning and understanding the basics of the language. Variables is a must know subject.



A variable in Javascript is a container of data. It can contain a String, Boolean, Number. A variable can also be of an Array data type. An Array data type is special in that it can contain many Strings, Numbers.



A  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 14 May 2009 02:48:50 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm#88</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm</guid>
		</item>
		<item>
			<title>director question.</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[i wanted to know if there was a way to put passwords on certain things.. just wanted to know for the future and a project for school... <img src="http://illiweb.com/fa/i/smiles/affraid.gif" alt="affraid" longdesc="40" />]]></description>
			<category>Coding/Scripting</category>
			<pubDate>Fri, 13 Feb 2009 22:39:45 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm#43</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm</guid>
		</item>
	</channel>
</rss>