<?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>ABCoder &#187; SEO</title>
	<atom:link href="http://abcoder.com/topics/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://abcoder.com</link>
	<description>ABCoder - Coding is Simple as A b c</description>
	<lastBuildDate>Sat, 17 Jul 2010 11:45:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SEO tips: Reduce your unwanted external links using jQuery</title>
		<link>http://abcoder.com/seo/seo-tips-reduce-your-externa-links/</link>
		<comments>http://abcoder.com/seo/seo-tips-reduce-your-externa-links/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:48:28 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[direct link]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[page rank leagage]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[reduce external links]]></category>
		<category><![CDATA[remove addthis.com link]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=36</guid>
		<description><![CDATA[Remove the direct links to addthis.com, wordpress.org and the free theme provider using jQuery. In this method the user to your site will see the links but search bots won't, cos the links are added dynamically using javascript after the page / dom is fully loaded. Use at your own risk.


Related posts:<ol><li><a href='http://abcoder.com/javascript/jquery/jquery-live-event/' rel='bookmark' title='Permanent Link: jQuery &#8220;live&#8221; event'>jQuery &#8220;live&#8221; event</a> <small>jQuery live event is a great new dynamic feature. You can assign live events to current elements in dom as well as it'll be automatically applied to newly created (future) elements. You do not need to bind the event each time after creating a new element again and again unlike bind event. It'll make your code clean and you'll get more time for dating :P...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/' rel='bookmark' title='Permanent Link: jQuery cycle plugin as carousel'>jQuery cycle plugin as carousel</a> <small>You can use the jQuery cycle plugin as carousel. No need of special plugin for carousel. Just use the fx: 'scrollHorz' and that's all! This option is kinda hidden on the malsup site. Don't know why they never emphasize on this option!!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/' rel='bookmark' title='Permanent Link: AJAX and SEO &#8211; Is it possible to get them together?'>AJAX and SEO &#8211; Is it possible to get them together?</a> <small>About 7 months ago I threw a question on LinkedIn, AJAX &amp; SEO. It was about is ajax seo friendly! (The website can be found here http://demo.zpbappi.com). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has [...]...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In SEO one of the most important factor is reducing the external links. A common practice is using rel=&#8221;nofollow&#8221; or rel=&#8221;external nofollow&#8221; or rel=&#8221;nofollow me&#8221; with &lt;a&gt; tag to reduce the page rank leakage. But do you know there may be some external links on your blog which you are not aware of at all! In most cases WordPress blogs have links to <a title="wordpress.org" rel="nofollow" href="http://wordpress.org">wordpress.org</a> and the theme provider&#8217;s site at bottom which does not have the &#8220;nofollow&#8221; attribute. The indexing and ranking procedure of search engine is still a mystery and there are rumors that some spiders follow the nofolllow links! So adding a nofollow is not always the good solution. Some WP plugins and widget codes insert direct link to their sites.</p>
<p>It may sound odd.. the most popular social bookmarking widget <strong>AddThis</strong> button code has direct link to their site and we never bother to look inside their code. Here is the AddThis button code:</p>
<pre class="brush: xml;">&lt;!-- AddThis Button BEGIN --&gt;
&lt;div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
	var addthis_pub=&quot;4a11abc75f3cd444&quot;;
&lt;/script&gt;
&lt;a href=&quot;http://www.addthis.com/bookmark.php?v=20&quot;
onmouseover=&quot;return addthis_open(this, '', '[URL]', '[TITLE]')&quot;
onmouseout=&quot;addthis_close()&quot;
onclick=&quot;return addthis_sendto()&quot;&gt;
&lt;img src=&quot;http://s7.addthis.com/static/btn/sm-plus.gif&quot; width=&quot;16&quot; height=&quot;16&quot; alt=&quot;Bookmark and Share&quot; style=&quot;border:0&quot;/&gt;
&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://s7.addthis.com/js/200/addthis_widget.js&quot;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;!-- AddThis Button END --&gt;</pre>
<p>You see there is a direct link to http://www.addthis.com/bookmark.php?v=20. If you remove this the code won&#8217;t work and adding nofollow is not a good solution. I modified their code in my own way and removed the link.<br />
To do this first I saved the js (<a rel="nofollow" title="AddThis js code" href="http://s7.addthis.com/js/200/addthis_widget.js">http://s7.addthis.com/js/200/addthis_widget.js</a>) that is loaded at first from the addthis server. According to their TOS there is no problem if I cache their js code and use an image of my own choice. So I used a different addthis image with shadow which you can see at top-left side of this post and added a pseudo class &#8220;bkmrk&#8221; to it. </p>
<p>This is the php code for the template:</p>
<pre class="brush: php;">&lt;img class=&quot;bkmrk&quot; src=&quot;&lt;?php bloginfo('template_url'); ?/&gt;/images/addthis.gif&quot; alt=&quot;bookmark&quot; title=&quot;&lt; ?php the_title(); ?&gt;&quot; name=&quot;&lt; ?php the_permalink(); ?&gt;&quot; border=&quot;0&quot; /&gt;</pre>
<p>The title of the img tag is title of the post and the value of the name attribute is permalink.</p>
<p>Then I included the js and jQuery library and used this simple code on domready:</p>
<pre class="brush: jscript;">jQuery(function(){
    jQuery(&quot;img.bkmrk&quot;).each(function(){
        var url = jQuery(this).attr(&quot;name&quot;);
        var title = jQuery(this).attr(&quot;title&quot;);
        jQuery(this).wrap('&lt;a onclick=&quot;return addthis_sendto()&quot; onmouseout=&quot;addthis_close()&quot; onmouseover=&quot;return addthis_open(this, \'\', \'' + url + '\', \'' + title + '\')&quot; href=&quot;http://abcoder.com/&quot;&gt;&lt;/a&gt;');
    });

    jQuery(&quot;span#wp&quot;).replaceWith('&lt;a rel=&quot;external nofollow&quot; href=&quot;http://wordpress.org&quot; title=&quot;WordPress&quot; target=&quot;_blank&quot;&gt;WordPress&lt;/a&gt;');
    jQuery(&quot;span#theme&quot;).replaceWith('&lt;a rel=&quot;external nofollow&quot; href=&quot;http://web2themes.com&quot; title=&quot;WordPress Themes&quot; target=&quot;_blank&quot;&gt;Web 2.0 Themes&lt;/a&gt;');
});</pre>
<p>This code simply adds the same functionality but the big difference is search bots won&#8217;t find the links as this is done using javascript. So if you see the html source code you won&#8217;t see any direct link to addthis.com. The last 2 lines of the code is for links to wordpress.org and web2themes.com.<br />
Isn&#8217;t it smart?</p>
<p>However I&#8217;m not 100% sure if adapting this method is legal or not! So use this at your own risk. On some blogs I&#8217;ve noticed this method being used for links to the commentators website. But right now I&#8217;m not sure which wordpress plugin they use for this purpose.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/jquery/jquery-live-event/' rel='bookmark' title='Permanent Link: jQuery &#8220;live&#8221; event'>jQuery &#8220;live&#8221; event</a> <small>jQuery live event is a great new dynamic feature. You can assign live events to current elements in dom as well as it'll be automatically applied to newly created (future) elements. You do not need to bind the event each time after creating a new element again and again unlike bind event. It'll make your code clean and you'll get more time for dating :P...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/' rel='bookmark' title='Permanent Link: jQuery cycle plugin as carousel'>jQuery cycle plugin as carousel</a> <small>You can use the jQuery cycle plugin as carousel. No need of special plugin for carousel. Just use the fx: 'scrollHorz' and that's all! This option is kinda hidden on the malsup site. Don't know why they never emphasize on this option!!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/' rel='bookmark' title='Permanent Link: AJAX and SEO &#8211; Is it possible to get them together?'>AJAX and SEO &#8211; Is it possible to get them together?</a> <small>About 7 months ago I threw a question on LinkedIn, AJAX &amp; SEO. It was about is ajax seo friendly! (The website can be found here http://demo.zpbappi.com). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has [...]...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/seo/seo-tips-reduce-your-externa-links/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>AJAX and SEO &#8211; Is it possible to get them together?</title>
		<link>http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/</link>
		<comments>http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 08:38:41 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ajax with seo]]></category>
		<category><![CDATA[is ajax seo friendly]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo and ajax]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=26</guid>
		<description><![CDATA[About 7 months ago I threw a question on LinkedIn, AJAX &#38; SEO. It was about is ajax seo friendly! (The website can be found here http://demo.zpbappi.com). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has [...]


Related posts:<ol><li><a href='http://abcoder.com/javascript/ie6-png-alpha-transparency-fix-for-dynamically-loaded-images-via-ajax/' rel='bookmark' title='Permanent Link: IE6 png alpha transparency fix for dynamically loaded images via ajax'>IE6 png alpha transparency fix for dynamically loaded images via ajax</a> <small>Simple javascript and jQuery code for fixing the alpha transparency problem of png image on Internet explorer 6. iepngfix.htc does not work for dynamic images loaded via ajax call. But this simple code works great for dynamically loaded images....</small></li>
<li><a href='http://abcoder.com/javascript/using-dreamweaver-spry-validation-with-jquery-ajax-form-plugin/' rel='bookmark' title='Permanent Link: Using Dreamweaver Spry validation with jQuery ajax form plugin'>Using Dreamweaver Spry validation with jQuery ajax form plugin</a> <small>A simple function for using Spry form validation of Dreamweaver with jQuery ajax form submit plugin. Just put this 3 lines of code in the "beforeSubmit" parameter of $.ajaxForm and that's all!...</small></li>
<li><a href='http://abcoder.com/javascript/a-better-process-to-find-maximum-z-index-within-a-page/' rel='bookmark' title='Permanent Link: A better process to find maximum z-index within a page'>A better process to find maximum z-index within a page</a> <small>A jQuery approach to find the maximum z-index of an element in DOM. You'll find it helpful and handy for your complex javascript application when you need to handle the absolute positioned message windows layers or similar cases....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>About 7 months ago I threw a question on LinkedIn, <a rel="nofollow" title="AJAX and SEO" href="http://www.linkedin.com/answers?viewQuestion=&amp;questionID=240279&amp;askerID=24489185&amp;goback=.mqr_false_1_DATE.mid_596763036">AJAX &amp; SEO</a>. It was about is ajax seo friendly! (The website can be found here <a rel="nofollow" href="http://demo.zpbappi.com/">http://demo.zpbappi.com</a>). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has one index.php page and no other pages. When you click any link/buttons it loads the content dynamically using ajax. So I agreed that search engines wont be able to crawl the site properly and stop thinking about it any more.</p>
<p>One week ago I got a project to fully ajaxify a simple static website <a rel="nofollow" title="camillenelson.com" href="http://www.camillenelson.com">camillenelson.com</a> with search enginge readability. I already knew (still then) it is not possible. I started re-thinking about the issue and find out a solution of my own. The site has only 8 pages which is a plus point. To assume any site from search spider&#8217;s view just disable the javascript from your browser settings and you&#8217;ll understand how the spider will go from one link to another.</p>
<p>For example: </p>
<pre class="brush: xml;">&lt;a href=&quot;about.html&quot;
onclick=&quot;javascript: Load('about'); return false;&quot;&gt;
    About
&lt;/a&gt;</pre>
<p>When javascript is enabled, clicking on About link won&#8217;t go to about.html page (return false;), rather it would call Load function. I think you&#8217;ve already got the idea!</p>
<p>In real I used jQuery to make the whole thing unobtrusive. The static html pages (already done) except index.html were kept as they are. In index.html the container div (the only div that changes for different pages) loads the content of different pages. I created a folder &#8220;ajaxContent&#8221; and created the html files with same name of the main html(s) but they contain only the contents, not the full html page.</p>
<p>Here is the jQuery code I used: (N.B. All the links are assigned with &#8220;ajax&#8221; class.)</p>
<pre class="brush: jscript;">$(function() {
    $(&quot;a&quot;).focus(function() {
        this.blur();
    });
    $(&quot;a.ajax&quot;).click(function() {
        var lnk = &quot;ajaxContent/&quot; + $(this).attr(&quot;href&quot;);
        var hover = $(this).find(&quot;img&quot;).attr(&quot;src&quot;);
        var img = $(this).find(&quot;img&quot;);
        $.ajax({
            url: lnk,
            beforeSend: function() {
                $(&quot;div#container&quot;).html('Loading...');
            },
            success: function(d) {
                $(&quot;div#container&quot;).html(d);
            },
            complete: function() {
                $(&quot;#loading&quot;).hide();
            }
        });
        return false;
    });
});</pre>
<p>If you have any better idea to make a fully-ajaxed website SEO friendly please let me know.</p>
<p>Thanks</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/ie6-png-alpha-transparency-fix-for-dynamically-loaded-images-via-ajax/' rel='bookmark' title='Permanent Link: IE6 png alpha transparency fix for dynamically loaded images via ajax'>IE6 png alpha transparency fix for dynamically loaded images via ajax</a> <small>Simple javascript and jQuery code for fixing the alpha transparency problem of png image on Internet explorer 6. iepngfix.htc does not work for dynamic images loaded via ajax call. But this simple code works great for dynamically loaded images....</small></li>
<li><a href='http://abcoder.com/javascript/using-dreamweaver-spry-validation-with-jquery-ajax-form-plugin/' rel='bookmark' title='Permanent Link: Using Dreamweaver Spry validation with jQuery ajax form plugin'>Using Dreamweaver Spry validation with jQuery ajax form plugin</a> <small>A simple function for using Spry form validation of Dreamweaver with jQuery ajax form submit plugin. Just put this 3 lines of code in the "beforeSubmit" parameter of $.ajaxForm and that's all!...</small></li>
<li><a href='http://abcoder.com/javascript/a-better-process-to-find-maximum-z-index-within-a-page/' rel='bookmark' title='Permanent Link: A better process to find maximum z-index within a page'>A better process to find maximum z-index within a page</a> <small>A jQuery approach to find the maximum z-index of an element in DOM. You'll find it helpful and handy for your complex javascript application when you need to handle the absolute positioned message windows layers or similar cases....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Flickr Uploader Clone: Free Download with source code</title>
		<link>http://abcoder.com/javascript/flickr-uploader-clone-free-download-with-source-code/</link>
		<comments>http://abcoder.com/javascript/flickr-uploader-clone-free-download-with-source-code/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 18:13:44 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Core JavaScript]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[flash uploader]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Flickr Uploader]]></category>
		<category><![CDATA[Javascript uploader with progress bar]]></category>
		<category><![CDATA[Uploader]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=18</guid>
		<description><![CDATA[Flickr Uploader clone for free using javascript and flash. PHP is used for server side. Download if for completely free in one zip file.


Related posts:<ol><li><a href='http://abcoder.com/javascript/gmail-uploader-clone-with-drag-drop-feature-free-download-with-source-code/' rel='bookmark' title='Permanent Link: Gmail uploader clone with drag drop feature : Free Download with source code'>Gmail uploader clone with drag drop feature : Free Download with source code</a> <small>Gmail file uploader clone with drag drop feature using jQuery. Download full working source code in a single zip file for free....</small></li>
<li><a href='http://abcoder.com/javascript/how-to-get-currently-logged-on-windows-username-in-php-javascript/' rel='bookmark' title='Permanent Link: How to get currently logged on windows username in PHP and Javascript'>How to get currently logged on windows username in PHP and Javascript</a> <small>Get current windows username in php and javascript! Is that possible?...</small></li>
<li><a href='http://abcoder.com/flickr/flicka-on-android-market-is-knocking-at/' rel='bookmark' title='Permanent Link: Flicka on Android Market is knocking at'>Flicka on Android Market is knocking at</a> <small>Flickr.com is going to introduce its aptitude through Flicka on Android phone....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have been searching for flickr uploader clone script online for one of my project. But no luck! There is no such thing on internet. Then I started with analyzing the javascript code of flickr uploader. Lucky that they did not packed their js. Though it was minified by removing white spaces. I used an online javascript code beautifier to make it pretty readable. After that the challenging part began. Cos, the code normally does not work on my local server. After huge hard working of long one week I made it finally. It works great! Even it works for videos too. You can modify the code for uploading any types of file. FYI, Flickr has used YUI (Yahoo User Interface) library for their uploader. So there is no licensing problem if you use this uploader for your own.</p>
<p>For my own need I added 2 extra fields. They are sent to server via POST method along with the FILES. One thing I&#8217;ve noticed, it can upload file faster than normal file uploading method. Cos, the file is encoded first via the flash uploader and somehow it is faster than normal.</p>
<p><img src="http://abcoder.com/YUI/select-multiple-files.jpg" alt="Upload Multiple File Once" width="500" height="299" /></p>
<p>And the great advantage is you can select multiple files during browsing by pressing Ctlr + A or select your files by dragging mouse. By using html &lt;input type=&#8221;file&#8221; /&gt; you can only select one file at a time which is really so boaring and life-taking when you want to upload hundreds of images.</p>
<p><img src="http://abcoder.com/YUI/Flickr-YUI-Uploader.jpg" alt="Flickr YUI Uploader" width="500" height="600" /></p>
<p><a title="Flickr Uploader using YUI" href="http://abcoder.com/YUI" target="_blank"><strong>Here is the online demo</strong></a>. The files are not being saved on my server for my own security!</p>
<p><a title="Free download Flickr Uploader using YUI - zip file." href="http://abcoder.com/YUI/Flickr-YUI.zip" target="_blank">Download it here completely free in a single zip file</a>!</p>
<p><strong>Modify the index_files/config.js file line no 49,<br />
var _site_root = &#8216;your script location&#8217;;</strong><br />
<strong>It won&#8217;t work for you until you change _site_root</strong></p>
<p>I have no problem if you use it for your own use. But I do not actually want anyone to put the files/zip on their own site to drive the traffics away from our blog.</p>
<p>If you need any support for modifying or setting it up or any bug report please contact me directly at <a title="adnan.eee@gmail.com" href="mailto:adnan.eee@gmail.com" target="_blank">adnan.eee@gmail.com</a></p>
<p>Thanks<br />
Have a pain-less uploading experience!</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/javascript/gmail-uploader-clone-with-drag-drop-feature-free-download-with-source-code/' rel='bookmark' title='Permanent Link: Gmail uploader clone with drag drop feature : Free Download with source code'>Gmail uploader clone with drag drop feature : Free Download with source code</a> <small>Gmail file uploader clone with drag drop feature using jQuery. Download full working source code in a single zip file for free....</small></li>
<li><a href='http://abcoder.com/javascript/how-to-get-currently-logged-on-windows-username-in-php-javascript/' rel='bookmark' title='Permanent Link: How to get currently logged on windows username in PHP and Javascript'>How to get currently logged on windows username in PHP and Javascript</a> <small>Get current windows username in php and javascript! Is that possible?...</small></li>
<li><a href='http://abcoder.com/flickr/flicka-on-android-market-is-knocking-at/' rel='bookmark' title='Permanent Link: Flicka on Android Market is knocking at'>Flicka on Android Market is knocking at</a> <small>Flickr.com is going to introduce its aptitude through Flicka on Android phone....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/javascript/flickr-uploader-clone-free-download-with-source-code/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
	</channel>
</rss>
