<?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>AjaxApp.com, ajax app and cool web apps! &#187; JavaScript</title>
	<atom:link href="http://www.ajaxapp.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxapp.com</link>
	<description>about ajax, javascript, DHTML, CSS, web app, MySQL, PHP, JSP, Java, Oracle and Howtos</description>
	<lastBuildDate>Tue, 30 Aug 2011 14:08:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Create a pop-up lightbox upon body onload</title>
		<link>http://www.ajaxapp.com/2010/09/15/create-a-pop-up-lightbox-upon-body-onload/</link>
		<comments>http://www.ajaxapp.com/2010/09/15/create-a-pop-up-lightbox-upon-body-onload/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 08:41:36 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Lightbox effect]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=532</guid>
		<description><![CDATA[This is an example that shows a lightbox effect upon the body onLoad event. There are three JavaScript functions here which you can call to show the lightbox, which are pop_up_light_box(), pop_up_light_box_with_delay(secs) and pop_up_light_box_for_ie_only(secs). As their names imply, the first one shows a lightbox effect, second one shows a lightbox effect with specified number of [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/09/15/create-a-pop-up-lightbox-upon-body-onload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use HTML5 Canvas to draw and manipulate images</title>
		<link>http://www.ajaxapp.com/2010/08/27/use-html5-canvas-to-draw-and-manipulate-images/</link>
		<comments>http://www.ajaxapp.com/2010/08/27/use-html5-canvas-to-draw-and-manipulate-images/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 17:38:55 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=524</guid>
		<description><![CDATA[One of the goodies in HTML5 is it allows you to use the &#60;canvas&#62;&#60;/canvas&#62; tag pair to draw or manipulate images on it. But not all browsers support the HTML5 Canvas. To have a canvas displayed on your browser, you can simply have the following HTML code. &#60;canvas id=&#34;myDrawingCanvas&#34; width=&#34;900&#34; height=&#34;200&#34;&#62; &#60;p&#62;Your browser doesn't support [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/08/27/use-html5-canvas-to-draw-and-manipulate-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 allows you to store data on your local web browser</title>
		<link>http://www.ajaxapp.com/2010/08/26/html5-allows-you-to-store-data-on-your-local-web-browser/</link>
		<comments>http://www.ajaxapp.com/2010/08/26/html5-allows-you-to-store-data-on-your-local-web-browser/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 02:57:50 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=521</guid>
		<description><![CDATA[If you remember Google Gears, there was a feature (Local Database API) allowing to store data on your local web browser. But since HTML5 has emerged into supporting such a feature, Google has decided to retire its Google Gears. To store data on the local web browser, you just need to use the function localStorage. [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/08/26/html5-allows-you-to-store-data-on-your-local-web-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to print web page without prompt using JavaScript on Firefox</title>
		<link>http://www.ajaxapp.com/2010/05/12/how-to-print-web-page-without-prompt-using-javascript-functions-on-firefox/</link>
		<comments>http://www.ajaxapp.com/2010/05/12/how-to-print-web-page-without-prompt-using-javascript-functions-on-firefox/#comments</comments>
		<pubDate>Thu, 13 May 2010 05:05:54 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[Firefox plugin]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=501</guid>
		<description><![CDATA[To print a web or HTML page without getting the usual printer prompt on your Firefox browser, you can make use of the Firefox plugin, JS Print Setup. Installation like usual installation of any Firefox plugins. Once you&#8217;ve installed, follow the sample code presented on the plugin page, or try my example code below: &#60;html&#62; [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/05/12/how-to-print-web-page-without-prompt-using-javascript-functions-on-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZooTool &#8211; visual bookmarking tool by MooTool(s)</title>
		<link>http://www.ajaxapp.com/2010/03/02/zootool-visual-bookmarking-tool-by-mootools/</link>
		<comments>http://www.ajaxapp.com/2010/03/02/zootool-visual-bookmarking-tool-by-mootools/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 09:55:21 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Framework]]></category>
		<category><![CDATA[In The news]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web 2.0 App]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=475</guid>
		<description><![CDATA[ZooTool is an interactive and beautiful visual bookmark tool for images, links, videos and documents. The ZooTool was developed based on the MooTools by Bastian Allgeier. Try out ZooTool via ajaxian]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/03/02/zootool-visual-bookmarking-tool-by-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to develop desktop-like web applications ?</title>
		<link>http://www.ajaxapp.com/2010/01/10/how-to-develop-desktop-like-web-applications/</link>
		<comments>http://www.ajaxapp.com/2010/01/10/how-to-develop-desktop-like-web-applications/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 03:58:13 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Web 2.0 App]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=463</guid>
		<description><![CDATA[Uki is a JavaScript library that allows you to develop web applications to have the look and feel and interactiveness of a desktop application. You can get Uki from Ukijs.org. To use Uki, it&#8217;s easy. You just need to include the uki.js within the JavaScript tag pairs in the header or body of your web [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2010/01/10/how-to-develop-desktop-like-web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chart API example : Display data on chart made easy</title>
		<link>http://www.ajaxapp.com/2009/04/13/google-chart-api-example-display-data-on-chart-made-easy/</link>
		<comments>http://www.ajaxapp.com/2009/04/13/google-chart-api-example-display-data-on-chart-made-easy/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 05:24:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Google Chart API]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=417</guid>
		<description><![CDATA[.data_label {float:left;width:55%;margin:3px;font-size:8pt;} .data_value {float:left;width:18%;margin:3px;font-size:8pt;} .row_clr {clear:both;} .data_form {width:100%;border:1px dotted #334455;text-align:left;padding:3px;} The Google Chart API provides an easy way to generate a chart dynamically by sending a simple URL to Google Chart service as follows: http://chart.apis.google.com/chart?cht=p3&#038;chd=t:60,40&#038;chs=250&#215;100&#038;chl=Hello&#124;World And Google Chart returns you an image of the chart. As shown the above you just need to pass the [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2009/04/13/google-chart-api-example-display-data-on-chart-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Gears Geolocation API, example displays your location on Google Map</title>
		<link>http://www.ajaxapp.com/2009/03/25/google-gear-geolocation-api-example-displays-your-location-on-google-map/</link>
		<comments>http://www.ajaxapp.com/2009/03/25/google-gear-geolocation-api-example-displays-your-location-on-google-map/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 04:45:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=377</guid>
		<description><![CDATA[The Google Gears Geolocation API allows you to display your current position data by obtaining it from your WiFi antenna. The Google Gears Geolocation API is able to obtain the exact location of the user&#8217;s current location, in terms of latitude, longitude and even the address etc. User browsers such as Internet Explorer, Firefox must [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2009/03/25/google-gear-geolocation-api-example-displays-your-location-on-google-map/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bookmarked: 70 useful ajax and javascript techniques</title>
		<link>http://www.ajaxapp.com/2009/03/10/bookmarked-70-useful-ajax-and-javascript-techniques/</link>
		<comments>http://www.ajaxapp.com/2009/03/10/bookmarked-70-useful-ajax-and-javascript-techniques/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 07:42:38 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=301</guid>
		<description><![CDATA[SmashingMagazine has published 70 useful ajax and javascript techniques, it&#8217;s a handy resource that I shall explore one by one later. There are many cool animated calendars, timelines, menus, tool tips, sliders built using ajax and javascript techniques.]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2009/03/10/bookmarked-70-useful-ajax-and-javascript-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting data made easy using JavaScript table sorter</title>
		<link>http://www.ajaxapp.com/2009/03/05/sorting-data-made-easy-using-javascript-table-sorter/</link>
		<comments>http://www.ajaxapp.com/2009/03/05/sorting-data-made-easy-using-javascript-table-sorter/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 04:04:58 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.ajaxapp.com/?p=278</guid>
		<description><![CDATA[If you&#8217;re asked to build a PHP script that pumps out some data from the database and presents in an HTML table to the users. And on the first row of the table, shows the titles of each field (As pictured above). Once the user clicks on each title the data in the column need [...]]]></description>
		<wfw:commentRss>http://www.ajaxapp.com/2009/03/05/sorting-data-made-easy-using-javascript-table-sorter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

