<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cindycullen.com &#187; javascript</title>
	<atom:link href="http://cindycullen.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://cindycullen.com</link>
	<description>Living Your Dreams</description>
	<lastBuildDate>Wed, 18 Apr 2012 12:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Daily Web Tips and Our Trip Out West</title>
		<link>http://cindycullen.com/daily-web-tips-and-our-trip-out-west/2010/09/13/</link>
		<comments>http://cindycullen.com/daily-web-tips-and-our-trip-out-west/2010/09/13/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 14:00:37 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[building websites]]></category>
		<category><![CDATA[on living your dreams]]></category>
		<category><![CDATA[on technical stuff]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[out west trip]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://cindycullen.com/?p=688</guid>
		<description><![CDATA[<img src="http://cindycullen.com/wp-content/iStock_000010784876Medium-300x214.jpg" alt="Website Development" title="Web Development" width="300" height="214" class="alignleft size-medium wp-image-689" />As if I needed another blog, I've started another so that I don't bore all of you with all the tips about web development.  

-----

On a more personal note, Matthew and I are getting excited about our trip out west.  We spent part of yesterday planning our route to see just how long it's going to take us and how much money it will take.  It's going to be a LOT of driving and a LONG time away from home, but WOW it's going to be EXCITING!!  I know we will be glad to be back home.

If any of you have suggestions about attractions we might want to see while we are on the road, please let me know! <a class="more-link" href="http://cindycullen.com/daily-web-tips-and-our-trip-out-west/2010/09/13/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cindycullen.com/daily-web-tips-and-our-trip-out-west/2010/09/13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Your Web Page Without Refreshing the Page</title>
		<link>http://cindycullen.com/updating-your-web-page-without-refreshing-the-page/2010/08/22/</link>
		<comments>http://cindycullen.com/updating-your-web-page-without-refreshing-the-page/2010/08/22/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 17:34:15 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[building websites]]></category>
		<category><![CDATA[on technical stuff]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[dynamic websites]]></category>
		<category><![CDATA[interactive websites]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://cindycullen.com/?p=620</guid>
		<description><![CDATA[<img src="http://cindycullen.com/wp-content/sxc_ajax.jpg" alt="Ajax" title="Ajax" width="300" height="225" class="alignleft size-full wp-image-622" />Hopefully, after reading some of my latest posts, it's very clear that visitors to your site are actually seeing your web page on their local computer.  

The page may have been built on the fly at your hosting server using PHP and MySQL and then downloaded to the user's computer, but by the time the visitor sees the page, it's on their local computer.  

Javascript code in the page may be making the web page more dynamic as well, but the user's browser is handling the Javascript dynamics.

Since the user is viewing your web page on their local computer, any updates that need to be made to the page requiring PHP and/or MySQL must happen at the server level.  This means that something on the page, such as a button or a link, must send another request to the server for the updated information.  This used to require a page refresh.  

The click of a link or a button would send the message to the server that another page was needed from the server.  It might have been the same page with new, updated information, but as far as the server was concerned, it was a new page.

In other words, once the page has been built and sent to the user's local computer, the only way to interact with the server is to send another request.  This used to mean that the user's browser would send the request and receive a new response to show a new page.

With advances in technology, advances in the languages that we now use for web development, and advances in our web browsers, it's now possible to update specific sections of a page without refreshing the entire page.  This has allowed web developers to create web 'applications' instead of just web 'pages'.  Web applications look and behave more like applications that you would run on your local computer.  This new technology is called Ajax - Asynchronous Javascript and XML <a class="more-link" href="http://cindycullen.com/updating-your-web-page-without-refreshing-the-page/2010/08/22/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cindycullen.com/updating-your-web-page-without-refreshing-the-page/2010/08/22/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Make Your Web Pages Dynamic!</title>
		<link>http://cindycullen.com/how-to-make-your-web-pages-dynamic/2010/08/14/</link>
		<comments>http://cindycullen.com/how-to-make-your-web-pages-dynamic/2010/08/14/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 20:50:30 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[building websites]]></category>
		<category><![CDATA[on technical stuff]]></category>
		<category><![CDATA[dynamic web pages]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://cindycullen.com/?p=608</guid>
		<description><![CDATA[Many times we need to make our web pages dynamic on the client side of things.  In other words, we need to do something dynamically on the browser side of things - your local computer - instead of at the server side.  For instance, if I enter something in a form, I have to submit the form, wait for the php code to check to see if what I entered is correct and then send me the results.  If my browser were somehow able to check what I entered before it sends it to the website, it could speed things up considerably.

This is where Javascript comes in.  Javascript is a scripting language that works inside your browser instead of inside the web server software like PHP.  Javascript allows me to send instructions to your browser through the website code.  Javascript is responsible for some of the basic animation that you see on web pages such as drop down menus, pop-up boxes, and buttons that change when you move your mouse over them. <a class="more-link" href="http://cindycullen.com/how-to-make-your-web-pages-dynamic/2010/08/14/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cindycullen.com/how-to-make-your-web-pages-dynamic/2010/08/14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>symfony 1.4 include_javascripts causing problems in IE6</title>
		<link>http://cindycullen.com/symfony-1-4-include_javascripts-causing-problems-in-ie6/2010/05/12/</link>
		<comments>http://cindycullen.com/symfony-1-4-include_javascripts-causing-problems-in-ie6/2010/05/12/#comments</comments>
		<pubDate>Wed, 12 May 2010 20:57:07 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[on technical stuff]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[symfony 1.4]]></category>

		<guid isPermaLink="false">http://cindycullen.com/?p=476</guid>
		<description><![CDATA[As if we needed something else to cause problems in Internet Explorer 6, my programming partner and I finally tracked down a problem with the symfony sfDoctrineGuard plugin login in IE6. The problem we were experiencing was IE6 seemed to &#8230; <a class="more-link" href="http://cindycullen.com/symfony-1-4-include_javascripts-causing-problems-in-ie6/2010/05/12/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cindycullen.com/symfony-1-4-include_javascripts-causing-problems-in-ie6/2010/05/12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

