<?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>jQuery and PHP examples</title>
	<atom:link href="http://www.jqueryphp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jqueryphp.com</link>
	<description>functions, codes, javascript, css, html</description>
	<lastBuildDate>Mon, 26 Dec 2011 11:05:38 +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>jQuery Tab by example</title>
		<link>http://www.jqueryphp.com/jquery-tab-by-example/2011/09/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/jquery-tab-by-example/2011/09/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 06:58:30 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Tab]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=179</guid>
		<description><![CDATA[jQuery is nice javascript library. I&#8217;m posting here how to create tab elements easily via jQuery. Download original file with example &#8211; myTab.js First of all we need some javascript functions. function myTabs(target_div, default_tab){ $(target_div + ' .myTabs a').each(function(){ $(this).click(function(){ myTabsDisable(target_div); $($(this).attr('href')).fadeIn(1000); $(this).attr('class','activeTab'); return false; }); }); //open default tab $(default_tab).show(); //default tab iig idevhjuuleh [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/jquery-tab-by-example/2011/09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parse links from given html content</title>
		<link>http://www.jqueryphp.com/parse-links-from-given-html-content/2011/07/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/parse-links-from-given-html-content/2011/07/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 16:09:01 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[parse link]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=156</guid>
		<description><![CDATA[You can parse a tags (links) using this function. I have published loading remote file content function in previous post. Using the functions together you can crawl links of websites. function getLinks($html) { $linkArray = array(); if (preg_match_all('/]*>(.*?)/i', $html, $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { if (strlen($match[1]) > 4) { array_push($linkArray, array($match[1], $match[2])); [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/parse-links-from-given-html-content/2011/07/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get remote file content function</title>
		<link>http://www.jqueryphp.com/get-remote-file-content-function/2011/07/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/get-remote-file-content-function/2011/07/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 03:43:59 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[get content]]></category>
		<category><![CDATA[load content]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=153</guid>
		<description><![CDATA[The function will return content of given URL. //directly gets its content function loadFile($sFilename, $sCharset = 'UTF-8') { if (floatval(phpversion()) >= 4.3) { $sData = file_get_contents($sFilename); } else { if (!file_exists($sFilename)) return -3; $rHandle = fopen($sFilename, 'r'); if (!$rHandle) return -2; $sData = ''; while (!feof($rHandle)) $sData .= fread($rHandle, filesize($sFilename)); fclose($rHandle); } if ($sEncoding = [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/get-remote-file-content-function/2011/07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speeding Up Your Web Site</title>
		<link>http://www.jqueryphp.com/speeding-up-your-web-site/2011/06/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/speeding-up-your-web-site/2011/06/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 08:50:55 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[speed up]]></category>
		<category><![CDATA[web optimization]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=133</guid>
		<description><![CDATA[Minimize HTTP Requests 80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/speeding-up-your-web-site/2011/06/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>cPanel/WHM migration</title>
		<link>http://www.jqueryphp.com/cpanelwhm-migration/2011/02/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/cpanelwhm-migration/2011/02/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 03:44:45 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=127</guid>
		<description><![CDATA[Yesterday I have moved my dedicated server to VPS. cPanel has a great feature that copies user from another cPanel server. All of my accounts except 1 account have been moved successfully with via the feature. The account has failed was with huge data approximately 500GB. But my server has only 400GB of disk space [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/cpanelwhm-migration/2011/02/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTTP Header/Status codes</title>
		<link>http://www.jqueryphp.com/http-header-codes/2011/01/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/http-header-codes/2011/01/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 13:36:50 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[header]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=123</guid>
		<description><![CDATA[Sometimes someone needs to know about header codes. Especially while using AJAX. So I&#8217;m posting the codes recently used. 100 =&#62; &#8220;HTTP/1.1 100 Continue&#8221;, 101 =&#62; &#8220;HTTP/1.1 101 Switching Protocols&#8221;, 200 =&#62; &#8220;HTTP/1.1 200 OK&#8221;, 201 =&#62; &#8220;HTTP/1.1 201 Created&#8221;, 202 =&#62; &#8220;HTTP/1.1 202 Accepted&#8221;, 203 =&#62; &#8220;HTTP/1.1 203 Non-Authoritative Information&#8221;, 204 =&#62; &#8220;HTTP/1.1 204 [...]]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/http-header-codes/2011/01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Slider</title>
		<link>http://www.jqueryphp.com/image-slider/2010/09/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/image-slider/2010/09/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 19:07:34 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[easy image slider]]></category>
		<category><![CDATA[image slider]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=117</guid>
		<description><![CDATA[Simple jQuery image slider script.]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/image-slider/2010/09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable all links via jQuery</title>
		<link>http://www.jqueryphp.com/disable-all-links-via-jquery/2010/06/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/disable-all-links-via-jquery/2010/06/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:26:14 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=109</guid>
		<description><![CDATA[Grabbing element with jQuery is very easy. In this example i&#8217;ll disable all links using jQuery. Demo URL : http://php.az.mn/jquery/disable_links.php]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/disable-all-links-via-jquery/2010/06/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery Ajax example demo</title>
		<link>http://www.jqueryphp.com/jquery-ajax-example-demo/2010/02/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.jqueryphp.com/jquery-ajax-example-demo/2010/02/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:58:59 +0000</pubDate>
		<dc:creator>Batmunkh</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.jqueryphp.com/?p=103</guid>
		<description><![CDATA[Javascript code (jQUERY): Name Email Comment Clear result Live demo is here. DON&#8217;T FORGET TO INCLUDE jQUERY.js file]]></description>
		<wfw:commentRss>http://www.jqueryphp.com/jquery-ajax-example-demo/2010/02/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

