<?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"
	>

<channel>
	<title>GLOBAL9 NETWORK</title>
	<atom:link href="http://www.global9.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.global9.net</link>
	<description>Freelancer WEB Hosting Provider</description>
	<pubDate>Sun, 04 Jan 2009 14:59:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Trace your code with FireBug</title>
		<link>http://www.global9.net/2009/01/trace-your-code-with-firebug/</link>
		<comments>http://www.global9.net/2009/01/trace-your-code-with-firebug/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 13:37:13 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[IT TOOLS and UTILITY]]></category>

		<category><![CDATA[TUTORIAL and HOW TO]]></category>

		<category><![CDATA[WEB PROGRAMMING]]></category>

		<category><![CDATA[addon]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[firebug]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[trace]]></category>

		<category><![CDATA[WEB AND DESIGN]]></category>

		<guid isPermaLink="false">http://www.global9.net/?p=107</guid>
		<description><![CDATA[Hai there,
if you are a Web developer, designer who work on web sites, this tools is very good for you.
this tools is very usefull for us on test and tweak your web script code..
Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, [...]]]></description>
			<content:encoded><![CDATA[<p>Hai there,</p>
<p>if you are a Web developer, designer who work on web sites, this tools is very good for you.</p>
<p>this tools is very usefull for us on test and tweak your web script code..</p>
<p>Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<h3>Just the way you like it</h3>
<p>Firebug is always just a keystroke away, but it never gets in your way. You can open Firebug in a separate window, or as a bar at the bottom of your browser. Firebug also gives you fine-grained control over which websites you want to enable it for&#8230;</p>
<p><strong>F12 is your friend</strong></p>
<p>The F12 key is undoubtedly the fastest way to get to Firebug. Train yourself to hit that key when it&#8217;s time to go debugging. If you&#8217;re the big screen type, use Control+F12 (or Command+F12 on Mac) to open Firebug in a separate window.</p>
<p><br class="spacer_" /></p>
<h3>Inspect and edit HTML</h3>
<p><img class="alignleft size-medium wp-image-111" style="border: 0pt none; float: left; margin-left: 3px; margin-right: 3px;" title="screenhome-html" src="http://www.global9.net/wp-content/uploads/2009/01/screenhome-html.gif" alt="" width="164" height="144" />Firebug makes it simple to find HTML elements buried deep in the page. Once you&#8217;ve found what you&#8217;re looking for, Firebug gives you a wealth of information, and lets you edit the HTML live.</p>
<h3>View source live</h3>
<p>Firefox has a &#8220;View Source&#8221; window, but it doesn&#8217;t show you what the HTML source really looks like once it has been transformed by JavaScript. Firebug&#8217;s HTML tab shows you what the HTML looks like <strong>right now</strong>.</p>
<p>In addition, the tabs on the right side let you discover the properties of an individual element, including the CSS rules that are styling it, the pixels that define its position and size, and the DOM properties that you can access from JavaScript.</p>
<h3>See changes highlighted</h3>
<p><img class="alignright size-medium wp-image-113" style="border: 0pt none; float: right; margin-left: 3px; margin-right: 3px;" title="screenhtml-highlight" src="http://www.global9.net/wp-content/uploads/2009/01/screenhtml-highlight.gif" alt="" width="214" height="164" />In any JavaScript-driven website, HTML elements are constantly being created, removed, and modified. Wouldn&#8217;t it be nice if you could see exactly what, when, and where these changes take place?</p>
<p>Firebug highlights changes to the HTML in yellow immediately when they occur. If you want to spy even closer, you have the option to also scroll every change into view, so you won&#8217;t miss a thing.</p>
<h3>Find elements with the mouse</h3>
<p><a href="http://www.global9.net/wp-content/uploads/2009/01/firebuginspect.jpg"><img class="alignnone size-thumbnail wp-image-116" style="border: 0pt none; margin-left: 3px; margin-right: 3px; float: left;" title="firebuginspect" src="http://www.global9.net/wp-content/uploads/2009/01/firebuginspect-150x150.jpg" alt="" width="150" height="150" /></a>Something in your page doesn&#8217;t quite look right and you want to know why. There&#8217;s no faster way to get answers than to click the &#8220;Inspect&#8221; button on Firebug&#8217;s toolbar and then prepare for immediate gratification. As you move around the page, whatever is beneath your mouse will be instantly revealed within Firebug, showing you the HTML and CSS behind it.</p>
<h3>Monitor network activity</h3>
<p><img class="alignright size-medium wp-image-118" style="border: 0pt none; float: right; margin-left: 3px; margin-right: 3px;" title="screenhome-net" src="http://www.global9.net/wp-content/uploads/2009/01/screenhome-net.gif" alt="" width="164" height="144" />Your pages are taking a long time to load, but why? Did you go crazy and write too much JavaScript? Did you forget to compress your images? Are your ad partner&#8217;s servers taking a siesta? Firebug breaks it all down for you file-by-file.</p>
<h3>Debug and profile JavaScript</h3>
<p>Firebug includes a powerful JavaScript debugger that lets you pause execution at any time and have look at the state of the world. If your code is a little sluggish, use the JavaScript profiler to measure performance and find bottlenecks fast.</p>
<h3>Quickly find errors</h3>
<p>When things go wrong, Firebug lets you know immediately and gives you detailed and useful information about errors in JavaScript, CSS, and XML.</p>
<h3>Explore the DOM</h3>
<p>The Document Object Model is a great big hierarchy of objects and functions just waiting to be tickled by JavaScript. Firebug helps you find DOM objects quickly and then edit them on the fly.</p>
<p><a href="https://addons.mozilla.org/firefox/addon/1843" target="_blank"><img class="alignnone size-full wp-image-120" style="border: 0pt none;" title="install1_2" src="http://www.global9.net/wp-content/uploads/2009/01/install1_2.png" alt="" width="144" height="116" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.global9.net/2009/01/trace-your-code-with-firebug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jquery Rocks</title>
		<link>http://www.global9.net/2008/11/jquery-rocks/</link>
		<comments>http://www.global9.net/2008/11/jquery-rocks/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 18:55:35 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[WEB PROGRAMMING]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[WEB AND DESIGN]]></category>

		<guid isPermaLink="false">http://www.global9.net/?p=75</guid>
		<description><![CDATA[jQuery is a new kind of JavaScript Library.
jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.
jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It was [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is a new kind of JavaScript Library.</p>
<p>jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.</p>
<p><strong>jQuery</strong> is a lightweight <a title="JavaScript library" href="http://en.wikipedia.org/wiki/JavaScript_library" target="_blank">JavaScript library</a> that emphasizes interaction between JavaScript and HTML. It was released January 2006 at BarCamp NYC by <a title="John Resig" href="http://en.wikipedia.org/wiki/John_Resig" target="_blank">John Resig</a>.</p>
<p><span class="mw-redirect">Dual licensed</span> under the MIT License and the <a title="GNU General Public License" href="http://en.wikipedia.org/wiki/GNU_General_Public_License" target="_blank">GNU General Public License</a>, jQuery is free and open source software.</p>
<p>With this Java Script Library, i will learn to integrating for my all themes, Drupal, joomla, and personal CMS WEB application system what i have made&#8230; Jquery.. You So Cools..</p>
<p>This is a starting point we will learn .. <a href="http://docs.jquery.com/How_jQuery_Works" target="_blank">http://docs.jquery.com/How_jQuery_Works</a>.</p>
<p>Before you begin on Java Script Library .. please you have good reference and enough knowlege for :</p>
<ol>
<li>HTML Code</li>
<li>CSS Code</li>
</ol>
<p>if you dont have knowledge for the point above, for now on please just search on google.. or comming back soon to my site.. :p</p>
<p>i will show you how to <em>code </em>HTML and CSS  with Good TOOLS you will find for coding/scripting.</p>
<p>Good LucK</p>
]]></content:encoded>
			<wfw:commentRss>http://www.global9.net/2008/11/jquery-rocks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome !</title>
		<link>http://www.global9.net/2008/11/welcome/</link>
		<comments>http://www.global9.net/2008/11/welcome/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 19:07:19 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[designer]]></category>

		<category><![CDATA[freelance]]></category>

		<category><![CDATA[freelancer]]></category>

		<category><![CDATA[global9]]></category>

		<category><![CDATA[ivandear]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[praetorian]]></category>

		<category><![CDATA[WEB AND DESIGN]]></category>

		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://global9.net/?p=1</guid>
		<description><![CDATA[Welcome to GLOBAL9 Network. We are The Freelancer WEB Hosting, Design &#38; Maintenance Provider.
This site still on maintenance by admin.
Thank you For visit..  
GLOBAL9 NetAdmin
]]></description>
			<content:encoded><![CDATA[<p>Welcome to GLOBAL9 Network. We are The Freelancer WEB Hosting, Design &amp; Maintenance Provider.</p>
<p>This site still on maintenance by admin.</p>
<p>Thank you For visit.. <img src='http://www.global9.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>GLOBAL9 NetAdmin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.global9.net/2008/11/welcome/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
