<?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>SmileyLover Blog &#187; hack friendster friend</title>
	<atom:link href="http://blog.smileylover.com/tag/hack-friendster-friend/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smileylover.com</link>
	<description>Sharing Knowledge and Resources</description>
	<lastBuildDate>Sun, 04 Apr 2010 18:32:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Boost Your Friends Using (Javascript)-Friendster Hacks</title>
		<link>http://blog.smileylover.com/boost-your-friends-using-javascript-friendster-hacks/</link>
		<comments>http://blog.smileylover.com/boost-your-friends-using-javascript-friendster-hacks/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 20:22:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Friendster]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[hack friendster friend]]></category>
		<category><![CDATA[javascript friendster]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=48</guid>
		<description><![CDATA[Remember first this is just for fun. I&#8217;m not responsible for any damage by using this script. Agree? If you did so let&#8217;s go. This is a simple javascript that insert into your profile in the about me or who i want to meet section to change your amount of friends. Perfectly for newbies in [...]]]></description>
			<content:encoded><![CDATA[<p>Remember first this is just for fun.  I&#8217;m not responsible for any damage by using this script.  Agree?  If you did so let&#8217;s go.  This is a simple javascript that insert into your profile in the <strong>about me</strong> or <strong>who i want to meet</strong> section to change your amount of friends.  Perfectly for newbies in <a href="http://friendster.com" target="_blank">friendster</a> who doesn&#8217;t have much friends yet <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>First open notepad or your favourite text editor and copy whole code below. Save as friends.js.</p>
<p><span id="more-48"></span></p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p48code2'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p482"><td class="code" id="p48code2"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> replaceLink <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
replaceLink.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://www.friendster.com/friends/&quot;</span><span style="color: #339933;">+</span>pageOwnerID<span style="color: #339933;">;</span>
replaceLink.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">createTextNode</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;View All (&lt;strong&gt;1000000&lt;/strong&gt;)&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> viewall <span style="color: #339933;">=</span> getElementsByClassName<span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;content_2&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;div&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;viewall&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//if exist</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>viewall <span style="color: #339933;">!==</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
viewall.<span style="color: #660066;">parentNode</span>.<span style="color: #660066;">replaceChild</span><span style="color: #009900;">&#40;</span>replaceLink<span style="color: #339933;">,</span>viewall<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> getElementsByClassName<span style="color: #009900;">&#40;</span>oElm<span style="color: #339933;">,</span>sTag<span style="color: #339933;">,</span>sClass<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> elm <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>oElm<span style="color: #009900;">&#41;</span>oElm <span style="color: #339933;">=</span> document<span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>sTag<span style="color: #009900;">&#41;</span>sTag <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;*&quot;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> els <span style="color: #339933;">=</span> oElm.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span>sTag<span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> document.<span style="color: #660066;">all</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> j<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span>k<span style="color: #339933;">=</span>els.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>j<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>k<span style="color: #339933;">;</span>j<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">new</span> RegExp<span style="color: #009900;">&#40;</span>sClass<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">test</span><span style="color: #009900;">&#40;</span>els<span style="color: #009900;">&#91;</span>j<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">className</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
elm.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span>els<span style="color: #009900;">&#91;</span>j<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">return</span> elm<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Change bold number to suit for your needs.  Or you can download here.</p>
<blockquote><p><a title="Friendster Javascript Code" href="http://rapidshare.com/files/144207246/friendster-hackamountfriends.js" target="_blank">Download Javascript</a></p></blockquote>
<p>Second, upload to your hosting or using <a href="http://ripway.com"><strong>ripway</strong></a> for free.  After uploaded, copy direct link from your javascript to this site for generate code that insert into friendster profile.</p>
<blockquote><p><a href="http://jsesbreno.googlepages.com/Darylldelfin.html">http://jsesbreno.googlepages.com/Darylldelfin.html</a></p></blockquote>
<p>Copy generated results from this site and paste into your <strong>about me</strong> or <strong>who i want to meet</strong> section. Finished <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Preview your profile now.</p>
<p>Source</p>
<blockquote><p><a href="http://friendstertalk.com/t20872-More-Friends.html">http://friendstertalk.com/t20872-More-Friends.html</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/boost-your-friends-using-javascript-friendster-hacks/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

