<?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>Superdit.com &#187; ajax</title>
	<atom:link href="http://superdit.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://superdit.com</link>
	<description>blogging, design, tech, and web</description>
	<lastBuildDate>Sat, 31 Mar 2012 20:40:33 +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>Tools for Analyzing AJAX Request on Popular Web Browser (Except IE)</title>
		<link>http://superdit.com/2010/07/15/tools-for-analyzing-ajax-request-on-popular-web-browser/</link>
		<comments>http://superdit.com/2010/07/15/tools-for-analyzing-ajax-request-on-popular-web-browser/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 03:12:42 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=1610</guid>
		<description><![CDATA[When you working in a web application project with rich client feature for example like using full Extjs component, you must be dealing with a lot Ajax request,  you must be want to know what the server response so in local development in different kind of web browser I always using these tools. Firefox You<a href="http://superdit.com/2010/07/15/tools-for-analyzing-ajax-request-on-popular-web-browser/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>When you working in a web application project with rich client feature for example like using full Extjs component, you must be dealing with a lot Ajax request,  you must be want to know what the server response so in local development in different kind of web browser I always using these tools.</p>
<p><strong>Firefox</strong><br />
You can use <a title="Firebug for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/1843/" target="_self">firebug for firefox</a> addons for seeing ajax request that sent to server and see the server response, the advantage using firebug than the webkit inspect element is you can see the server response as a simple text or as an html, but on my firefox sometimes it got some error (nothing wrong with the server but server response not displaying on firebug). After you installing firebug restart the firefox and click on the firebug icon on the right bottom.<span id="more-1610"></span></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-1627" title="firefox-xhr-debug" src="http://superdit.com/wp-content/uploads/2010/07/firefox-xhr-debug.png" alt="Firefox XHR Ajax Debug" width="500" height="200" /></p>
<p><strong>Google Chrome and Safari</strong><br />
Google Chrome and Safari basically using the same popular engine namely <a title="Webkit" href="http://webkit.org/" target="_blank">webkit</a>, and it used to in many mobile web browser. You don&#8217;t need any extension to see ajax request on this two browser, all you have to do is right click on your mouse and choose the &#8220;inspect element&#8221; option, and choose <em>&#8220;Resource&#8221;</em> Tab if you haven&#8217;t enable resource tracking you will see a screen like below.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-1628" title="chrome-enable-resource-tracking" src="http://superdit.com/wp-content/uploads/2010/07/chrome-enable-resource-tracking.png" alt="Chrome or Safari Enable Resource Tracking" width="500" height="200" /></p>
<p>The click the button <em>&#8220;Enable resource tracking&#8221;</em> then it will become like this one an you can see on the sub tab &#8220;XHR&#8221; that the ajax request that have been called to the server.</p>
<p style="text-align: center;"><img title="chrome-xhr-debug" src="../wp-content/uploads/2010/07/chrome-xhr-debug.png" alt="Chrome or Safari XHR Ajax Debug" width="500" height="200" /></p>
<p><strong>Opera</strong><br />
Opera use a tool called <a title="Opera DragonFly" href="http://www.opera.com/dragonfly/" target="_blank">dragonfly</a> to inspecting web page element, the way you to inspecting element is similar like chrome and safari, just right click on the opened tab and choose &#8220;inspect element&#8221; option, if you are first time using this opera will load the dragon fly for the first time use, not so long you can see a windows on the bottom, and for seeing the ajax request you can see on the Network Tab.</p>
<p style="text-align: center;"><img class="size-full wp-image-1632  aligncenter" title="opera-xhr-debug" src="http://superdit.com/wp-content/uploads/2010/07/opera-xhr-debug.png" alt="Opera XHR Ajax Debug" width="500" height="201" /></p>
<p>Well that what I always do when debugging the ajax request but too bad I haven&#8217;t found it for IE, Web Developer feature on IE seems cannot analyzing ajax request yet, and hoping a better ajax tool in IE9.</p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2010/07/15/tools-for-analyzing-ajax-request-on-popular-web-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 Jquery Ajax File Uploader Plugins</title>
		<link>http://superdit.com/2010/06/29/10-jquery-ajax-file-uploader-plugins/</link>
		<comments>http://superdit.com/2010/06/29/10-jquery-ajax-file-uploader-plugins/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 08:49:36 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=1086</guid>
		<description><![CDATA[Creating ajax upload from a raw javascript or jquery is not that simple, when baking a simple website, I personally will use available plugin, so it can save me much time and effort, we have to thank that there a lot of developer out there that share their great works. 01. Plupload Allows you to<a href="http://superdit.com/2010/06/29/10-jquery-ajax-file-uploader-plugins/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Creating ajax upload from a raw javascript or jquery is not that simple, when baking a simple website, I personally will use available plugin, so it can save me much time and effort, we have to thank that there a lot of developer out there that share their great works.</p>
<h6>01. <a title="Pupload" href="http://www.plupload.com" target="_blank">Plupload</a></h6>
<p><a title="Pupload" href="http://www.plupload.com/" target="_blank"><img class="alignnone size-full wp-image-1217" title="plupload_com_example_queuewidget" src="http://superdit.com/wp-content/uploads/2010/06/plupload_com_example_queuewidget.png" alt="pupload example screen" width="484" height="405" /></a><span id="more-1086"></span></p>
<p>Allows you to upload files using HTML5 Gears, Silverlight, Flash, BrowserPlus or normal forms, providing some unique features such as upload progress, image resizing and chunked uploads,  Plupload is currently separated into a Core API  and a jQuery upload queue widget this enables you to either use it out of the box or write your own custom implementation, <a title="Pupload Example" href="http://www.plupload.com/example_queuewidget.php" target="_blank">demo</a>.</p>
<h6>02. <a title="Ajax Upload by Andrew Valums" href="http://valums.com/ajax-upload/" target="_blank">Ajax Upload</a> by <a title="Andrew Valums" href="http://valums.com/" target="_blank">Andrew Valums</a></h6>
<p><a title="Ajax Upload by Andrew Valums" href="http://valums.com/ajax-upload/" target="_blank"><img class="alignnone size-full wp-image-1148" title="Ajax-Upload_Andrew-Valumsscreen" src="http://superdit.com/wp-content/uploads/2010/06/Ajax-Upload_Andrew-Valumsscreen.png" alt="Ajax Upload by Andrew Valums" width="485" height="175" /></a></p>
<p>AJAX Upload allows you to easily upload multiple files without refreshing the page and use any element to show file selection window. It works in all major browsers and doesn’t require any library to run. AJAX Upload doesn’t pollute the global namespace, and is tested with jQuery, Prototypejs. This plugin is one of the most famous jquery uploader that require no flash. <a title="Ajax Upload by Andrew Valums Demo" href="http://valums.com/wp-content/uploads/ajax-upload/demo-jquery.htm" target="_blank">demo</a></p>
<h6>03. <a title="Ajax File Upload" href="http://www.phpletter.com/Our-Projects/AjaxFileUpload/" target="_blank">Ajax File Upload</a></h6>
<p><a title="Ajax File Upload" href="http://www.phpletter.com/Our-Projects/AjaxFileUpload/" target="_blank"><img class="alignnone size-full wp-image-1204" title="AjaxFileUpload-Demo" src="http://superdit.com/wp-content/uploads/2010/06/AjaxFileUpload-Demo.png" alt="AjaxFileUpload-Demo" width="484" height="150" /></a></p>
<p>This AjaxFileUpload Plugin is a hacked version of Ajaxupload plugin created by yvind Saltvik, which is really good enought for normal use. Its idea is to create a iframe and submit the specified form to it for further processing, <a title="Ajax File Upload Demo" href="http://www.phpletter.com/Demo/AjaxFileUpload-Demo/" target="_blank">demo</a>.</p>
<h6>03. <a title="jQuery Multiple=">jQuery Multiple File Upload Plugin</a> by <a href="http://www.fyneworks.com/">Fyneworks.com</a></h6>
<p><a title="jQuery Multiple="><img class="alignnone size-full wp-image-1176" title="jQuery_Multiple_File_Upload_Plugin" src="http://superdit.com/wp-content/uploads/2010/06/jQuery_Multiple_File_Upload_Plugin.png" alt="jQuery Multiple=" /></a></p>
<p>The Multiple File Upload Plugin (jQuery.MultiFile) is a non-obstrusive plugin for the jQuery Javascript library that helps users easily select multiple files for upload quickly and easily whilst also providing some basic validation functionality to help developers idenfity simple errors, without having to submit the form.</p>
<h6>04. <a title="jQuery Form Plugin - File Upload by malsup.com" href="http://malsup.com/jquery/form/file/" target="_blank">jQuery Form Plugin &#8211; File Upload</a> by <a title="http://malsup.com/" href="http://malsup.com/" target="_blank">malsup.com</a></h6>
<p><a title="malsup jquery form file" href="http://malsup.com/jquery/form/file/" target="_blank"><img class="alignnone size-full wp-image-1172" title="malsup_com_jquery_form_file" src="http://superdit.com/wp-content/uploads/2010/06/malsup_com_jquery_form_file.png" alt="malsup jquery form file" width="485" height="235" /></a></p>
<p>This plugin is a part of <a title="Jquery Form Plugin" href="http://malsup.com/jquery/form/" target="_blank">jQuery Form Plugin</a> it make you easier to submitting form using Ajax including the input file, and required no flash, <a title="malsup jquery form file" href="http://malsup.com/jquery/form/file/" target="_blank">demo</a>.</p>
<h6>05 . <a title="Uploadify" href="http://www.uploadify.com/" target="_blank">Uploadify</a></h6>
<p><a title="Uploadify" href="http://www.uploadify.com/" target="_blank"><img class="alignnone size-full wp-image-1153" title="Uploadify" src="http://superdit.com/wp-content/uploads/2010/06/Uploadify.png" alt="Uploadify Screen Demo" width="485" height="221" /></a></p>
<p>Uploadify is a jQuery plugin that allows the easy integration of a multiple (or single) file uploads on your website.  It requires Flash and any backend development language.  An array of options allow for full customization for advanced users, but basic implementation is so easy that even coding novices can do it. Uploadify free to be used in a number of applications and commercial products, <a title="Uploadify Demo" href="http://www.uploadify.com/demo" target="_blank">demo</a>.<a title="Uploadify Demo" href="http://www.uploadify.com/demo" target="_blank"><br />
</a></p>
<h6>06. <a title=" SWFUpload jQuery Plugin" href="http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/" target="_blank">SWFUpload jQuery Plugin</a> by <a title="Adam Royle" href="http://blogs.bigfish.tv/adam/" target="_blank">Adam Royle</a></h6>
<p><a title="SWFUpload jQuery Plugin" href="http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/" target="_blank"><img class="alignnone size-full wp-image-1194" title="swfupload-jquery-plugin" src="http://superdit.com/wp-content/uploads/2010/06/swfupload-jquery-plugin.png" alt="swfupload jquery plugin" width="485" height="240" /></a></p>
<p>This plugin created based on <a title="swfupload" href="http://swfupload.org/" target="_blank">SWFUpload</a> and Jquery, it support both single or mutiple file upload, and require flash, <a title="SWFUpload jQuery Plugin Multiple=">demo</a>.</p>
<h6>07. <a title="jqswfupload by Alexandre Magno" href="http://www.alexandremagno.net/blogs/jqswfupload/" target="_blank">jqswfupload</a> by <a title="Alexandre Magno" href="http://blog.alexandremagno.net/" target="_blank">Alexandre Magno</a></h6>
<p><a title="jqswfupload by Alexandre Magno" href="http://www.alexandremagno.net/blogs/jqswfupload/" target="_blank"><img class="alignnone size-full wp-image-1160" title="jqswfupload-screen" src="http://superdit.com/wp-content/uploads/2010/06/jqswfupload-screen.png" alt="jqswfupload-screen by jqswfupload-screen" width="485" height="192" /></a></p>
<p>This plugin is the easier way to make a multiple file upload using swfupload library. You can create a complete interface for multiupload files based on Flickr in just one line of code and them make custom settings to controll how works all the features, <a title="jqswfupload by Alexandre Magno demo" href="http://www.alexandremagno.net/jquery/plugins/upload/" target="_blank">demo</a>.</p>
<h6>08. <a title="jcUpload" href="http://www.jcupload.com/" target="_blank">jcUpload</a></h6>
<p><a title="jcUpload" href="http://www.jcupload.com/" target="_blank"><img class="alignnone size-full wp-image-1163" title="jcupload_demo" src="http://superdit.com/wp-content/uploads/2010/06/jcupload_demo.png" alt="jcupload_demo" width="485" height="164" /></a></p>
<p>It&#8217;s a small free plugin, that enables ajax-like file upload. It requires Adobe Flash player and jQuery JavaScript library. Plugin is freeware, <a title="jcUpload demo" href="http://www.jcupload.com/demo/" target="_blank">demo</a>.</p>
<h6>09. <a title="jqUploader" href="http://pixeline.be/experiments/jqUploader/" target="_blank">jqUploader</a></h6>
<p><a title="jqUploader" href="http://pixeline.be/experiments/jqUploader/" target="_blank"><img class="alignnone size-full wp-image-1173" title="jqUploader_demo" src="http://superdit.com/wp-content/uploads/2010/06/jqUploader_demo.png" alt="jqUploader" width="485" height="165" /></a></p>
<p>jqUploader is a jquery plugin that substitutes html file input fields with a flash-based file upload widget, allowing to display a progressbar and percentage. It is designed to take most of its customization from the html code of your form directly &#8211; so you don&#8217;t have to do things twice . For instance, the maximum file size, if specified via html, will be recognized and used in the rich upload interface generated by jqUploader. This plugin required flash, <a title="jqUploader Demo" href="http://pixeline.be/experiments/jqUploader/test.php" target="_blank">demo</a>.</p>
<h6>10. <a title="jqupload" href="http://jqframework.com/jqupload" target="_blank">jqupload</a> by <a title="jqframework" href="http://jqframework.com" target="_blank">jQframework</a></h6>
<p>From the site it got following feature Easy to integate to your application, easy to define your own logic. lightweight form uploader plugin, source file is just 2k, free and free of charge under the MIT License, <a title="jqupload demo" href="http://jqframework.com/jqupload_demo.html" target="_blank">demo</a>.</p>
<h6>11. <a title="jquery upload progress" href="http://www.nixbox.com/demos/jquery-uploadprogress.php" target="_blank">uploadprogress</a></h6>
<p><a title="jquery upload progress" href="http://www.nixbox.com/demos/jquery-uploadprogress.php" target="_blank"><img class="alignnone size-full wp-image-1168" title="jquery-uploadprogress-demo" src="http://superdit.com/wp-content/uploads/2010/06/jquery-uploadprogress-demo.png" alt="jquery upload progress screen" width="484" height="210" /></a></p>
<p>Plugin to augment a standard file upload form with transparent  background upload and add uploadprogress meter to keep client informed of progress. This is not really the plugin for uploading file, but just to help inform the progress of uploading file, <a title="jquery upload progress demo" href="http://www.nixbox.com/demos/jquery-uploadprogress.php" target="_blank">demo</a>.</p>
<p><strong>Other source that might be useful</strong></p>
<p><a href="http://kisdigital.wordpress.com/2010/03/30/easy-jquery-mutlifile-uploader/" target="_blank">http://kisdigital.wordpress.com/2010/03/30/easy-jquery-mutlifile-uploader/</a></p>
<p><a href="http://docs.jquery.com/Tutorials:Multiple_File_Upload_Magic" target="_blank">http://docs.jquery.com/Tutorials:Multiple_File_Upload_Magic</a></p>
<p><a href="http://www.fullfatcode.com/2009/06/06/jquery-ajax-uploader-plugin/" target="_blank">http://www.fullfatcode.com/2009/06/06/jquery-ajax-uploader-plugin/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2010/06/29/10-jquery-ajax-file-uploader-plugins/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Load Content Scroll Using EXT Core and PHP</title>
		<link>http://superdit.com/2010/06/22/load-content-scroll-using-extcore-and-php/</link>
		<comments>http://superdit.com/2010/06/22/load-content-scroll-using-extcore-and-php/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 04:40:34 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Extjs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[extcore]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=867</guid>
		<description><![CDATA[Extcore is one the Extjs product, but the company name now called sencha, read this why extjs changes their name. If you using full stack Extjs source the Extcore must be included in the source, in this post I want to show how to load content while window scroll from the server using Extcore, this<a href="http://superdit.com/2010/06/22/load-content-scroll-using-extcore-and-php/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Extcore is one the Extjs product, but the company name now called <a title="Sencha " href="http://sencha.com" target="_blank">sencha</a>, read this <a title="Ext JS + jQTouch + Raphaël = Sencha" href="http://www.sencha.com/blog/2010/06/14/ext-js-jqtouch-raphael-sencha/" target="_blank">why extjs changes their name</a>. If you using full stack Extjs source the Extcore must be included in the source, in this post I want to show how to load content while window scroll from  the server using Extcore, this feature maybe useful when users want to see more data than visible on the screen maybe like facebook wall, actually this post is similar to another post i found, but using jquery (they are in <a title="Load Data while Scrolling Page Down with jQuery and PHP" href="http://www.9lessons.info/2009/07/load-data-while-scroll-with-jquery-php.html" target="_blank">9lessons.info</a> and <a title="Load Content While Scrolling With jQuery" href="http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/" target="_blank">webresourcesdepot.com</a>), in this example i&#8217;m just using one file and the data is hardcoded from array</p>
<p>So lets start, here&#8217;s the php code</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php

$data = array(
    0 =&gt; array('post' =&gt; 'Post Number 0')
);

for ($i=1; $i&lt;=50; $i++) {
    $tmp_data = array(
        $i =&gt; array('post' =&gt; 'Post Number ' . $i)
    );
    $data = array_merge($data, $tmp_data);
}

// get next 10 row data,
if (isset($_GET['act'])) {
    $start = ($_GET['page'] * 10) + 1;
    $finish = $start + 10;
    if ($finish &lt;= count($data)) {
        echo '&lt;div class=&quot;data newhead&quot;&gt;Loaded Data &amp;darr;&lt;/div&gt;';
        for ($i=$start; $i&lt;$finish; $i++) {
            echo '&lt;div class=&quot;data&quot;&gt;'.$data[$i]['post'].'&lt;/div&gt;';
        }
    } else {
        echo 'stop';
    }
    exit;
}

?&gt;
</pre>
<p><span id="more-867"></span></p>
<p>In the php code the data created with array format, the conditional <em>&#8220;if&#8221;</em> statement called when the new data need to be loaded (it fetch 10 row data/load), and another conditional <em>&#8220;if&#8221;</em> inside the first statement is to check whether the max row data have been reached, then if max row have been reached there&#8217;s no need to output the data. Now the javascript using Extcore, like usual include the Extcore first</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;extcore/ext-core.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
/* code from :

http://james.padolsey.com/javascript/get-document-height-cross-browser/

*/
function getDocHeight() {
    var D = document;
    return Math.max(
        Math.max(D.body.scrollHeight,
            D.documentElement.scrollHeight),
        Math.max(D.body.offsetHeight,
            D.documentElement.offsetHeight),
        Math.max(D.body.clientHeight,
            D.documentElement.clientHeight)
    );
}
var page = 1;
var onLoad = false;
Ext.onReady(function() {
    Ext.fly(window).on(&quot;scroll&quot;, function() {
        var scrollY;
        var winHeight;
        var docHeight;
        if (!Ext.isIE) {
            scrollY = Ext.fly(window).dom.scrollY;
            winHeight = Ext.fly(window).dom.innerHeight;
        } else {
            scrollY = document.documentElement.clientHeight;
            winHeight = document.documentElement.scrollTop;
        }
        docHeight = getDocHeight();
        if (docHeight &lt;= scrollY + winHeight) {

            Ext.Ajax.on('beforerequest', function(){
                Ext.fly('loading').setVisible(true);
                onLoad = true;
            });
            Ext.Ajax.on('requestcomplete', function() {
                Ext.fly('loading').setVisible(false);
                onLoad = false;
            });

            if (!onLoad) {
                Ext.Ajax.request({
                    url: 'main.php?act=getData&amp;page='+page,
                    method: 'post',
                    success: function(o) {
                        if (o.responseText != 'stop') {
                            Ext.fly('boxdata').insertHtml('beforeEnd', o.responseText);
                            page = page + 1;
                        } else {
                            html = '&lt;div class=&quot;data newhead&quot;&gt;No More Data !&lt;/div&gt;';
                            Ext.fly('boxdata').insertHtml('beforeEnd', html);
                        }
                    }
                });
            }
        }
        return false;
    });
});
&lt;/script&gt;
</pre>
<p>The first function in code above is to get the value of document height thanks to <a title="James Padolsey" href="http://james.padolsey.com/" target="_blank">james.padolsey.com</a> for this function cause the function to get this value is difference in IE, Opera, but Firefox and Webkit browser is almost the same. In Extcore I didn&#8217;t find the function to get this value, so also for the window height and window scroll height, maybe this is why jquery better than Extcore (don&#8217;t compare jquery with the full stack Extjs, this is absolutely different). So Extcore function that I use is to trigger event, ajax request and append new html element. Now this is the CSS code to make it a bit pretty</p>
<pre class="brush: css; title: ; notranslate">
&lt;style type=&quot;text/css&quot;&gt;
    * { font-size: 24px; }

    div {
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #000;
    }

    .head {
        padding: 10px;
        background: #333;
        color: #fff;
    }
    .head a {
        color: #ddd;
    }
    .data {
        background: #f3f3f3;
    }
    .newhead {
        background: #d3d3d3;
    }
    #loading {
        display: none;
        background: #fff;
        border: none;
        font-size: 62px;
    }
&lt;/style&gt;
</pre>
<p>And the last is the html code</p>
<pre class="brush: xml; title: ; notranslate">
&lt;body&gt;
    &lt;div class=&quot;head&quot;&gt;
        This is example for load scroll using Extcore
    &lt;/div&gt;
    &lt;div id=&quot;boxdata&quot;&gt;
        &lt;?php for($i=0; $i&lt;=10; $i++) { ?&gt;
        &lt;div class=&quot;data&quot;&gt;
            &lt;?php echo $data[$i]['post']; ?&gt;
        &lt;/div&gt;
        &lt;?php } ?&gt;
    &lt;/div&gt;
    &lt;div id=&quot;loading&quot;&gt;
        &lt;img src=&quot;img/27.gif&quot; alt=&quot;loading&quot;/&gt;
        &amp;nbsp;
        Please Wait...
    &lt;/div&gt;
&lt;/body
</pre>
<p>Yup that&#8217;s all hope this useful for you and you can download all the code example or view the live demo</p>
<p><a title="Load Scroll Using Extcore Source Download" href="http://www.box.net/shared/dlt14j8e02" target="_blank">DOWNLOAD SOURCE</a></p>
<p><a title="Load Scroll Using Extcore Demo" href="http://demo.superdit.com/extcore_load_scroll/" target="_blank">VIEW DEMO</a></p>
<pre>﻿﻿﻿﻿﻿</pre>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2010/06/22/load-content-scroll-using-extcore-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

