<?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>Blog &#124; Pages of Interest &#187; Javascript</title>
	<atom:link href="http://pagesofinterest.net/blog/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://pagesofinterest.net/blog</link>
	<description>1000% Hyperbole Free</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:57:03 +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>UserScript: Telecom NZ Broadband Stats</title>
		<link>http://pagesofinterest.net/blog/2011/06/userscript-telecom-nz-broadband-stats/</link>
		<comments>http://pagesofinterest.net/blog/2011/06/userscript-telecom-nz-broadband-stats/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 05:47:23 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Telecom NZ]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1099</guid>
		<description><![CDATA[I finally got sick of manually calculating my remaining broadband allowance, and wrote a Greasemonkey script that to do it for me. Update: I&#8217;ve updated this script, it now displays remaining bandwidth on the Telecom NZ initial login screen. It waits until the relevant element has been loaded, then pulls the information it requires from [...]
No related posts.]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/06/userscript-telecom-nz-broadband-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scriptaculous Draggable reverteffect Example</title>
		<link>http://pagesofinterest.net/blog/2010/12/scriptaculous-draggable-reverteffect-example/</link>
		<comments>http://pagesofinterest.net/blog/2010/12/scriptaculous-draggable-reverteffect-example/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 11:30:29 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1048</guid>
		<description><![CDATA[I had a bit of a hard time finding which arguments are passed to the reverteffect function. Scriptaculous&#8217; documentation is somewhat opaque: Effect, default to Effect.Move. Defines the effect to use when the draggable reverts back to its starting position. Hmm, no mention of any arguments passed to the reverteffect function&#8230; Here is an example [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2010/11/scriptaculous-effect-morph-ie6/' rel='bookmark' title='Scriptaculous Effect.Morph IE6'>Scriptaculous Effect.Morph IE6</a> <small>Ran into a weird bug the other day in IE6....</small></li>
<li><a href='http://pagesofinterest.net/blog/2010/11/ie8-assigning-classnames-with-new-element/' rel='bookmark' title='IE8 &amp; Assigning Classnames With new Element(&#8216;&#8230;&#8217;)'>IE8 &#038; Assigning Classnames With new Element(&#8216;&#8230;&#8217;)</a> <small>When dynamically creating elements using Prototype&#8217;s new Element(&#8216;&#8230;&#8217;) method, I...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/12/scriptaculous-draggable-reverteffect-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 &amp; Assigning Classnames With new Element(&#8216;&#8230;&#8217;)</title>
		<link>http://pagesofinterest.net/blog/2010/11/ie8-assigning-classnames-with-new-element/</link>
		<comments>http://pagesofinterest.net/blog/2010/11/ie8-assigning-classnames-with-new-element/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 00:23:56 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=967</guid>
		<description><![CDATA[When dynamically creating elements using Prototype&#8217;s new Element(&#8216;&#8230;&#8217;) method, I ran into this irritating gotcha with IE8. While the following looks great and works well in Firefox: new Element&#40;'span', &#123; 'class': 'someClassName' &#125;&#41;; In IE8, not so much. What one expects, and gets in Firefox: &#60;span class=&#34;someClassName&#34;&#62;&#60;/span&#62; What one gets in IE8: &#60;span&#62;&#60;/span&#62; Hmmm, where [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2010/11/scriptaculous-effect-morph-ie6/' rel='bookmark' title='Scriptaculous Effect.Morph IE6'>Scriptaculous Effect.Morph IE6</a> <small>Ran into a weird bug the other day in IE6....</small></li>
<li><a href='http://pagesofinterest.net/blog/2010/11/check-if-its-an-object/' rel='bookmark' title='Check if it’s an Object!'>Check if it’s an Object!</a> <small>OK Javascripters, check it out: the IE family don&#8217;t like...</small></li>
<li><a href='http://pagesofinterest.net/blog/2011/06/userscript-telecom-nz-broadband-stats/' rel='bookmark' title='UserScript: Telecom NZ Broadband Stats'>UserScript: Telecom NZ Broadband Stats</a> <small>I finally got sick of manually calculating my remaining broadband...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/11/ie8-assigning-classnames-with-new-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scriptaculous Effect.Morph IE6</title>
		<link>http://pagesofinterest.net/blog/2010/11/scriptaculous-effect-morph-ie6/</link>
		<comments>http://pagesofinterest.net/blog/2010/11/scriptaculous-effect-morph-ie6/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 00:00:15 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Browser Bugs]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=952</guid>
		<description><![CDATA[Ran into a weird bug the other day in IE6. Some elements, h1&#8242;s, weren&#8217;t animating with their parent when the parent was being Effect.Morphed. Every other element was moving, but the h1&#8242;s just sat there, looking really stupid. I think the use of Twin Helix&#8217;s IE PNG Fix was a contributing factor here, since writing [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2010/12/scriptaculous-draggable-reverteffect-example/' rel='bookmark' title='Scriptaculous Draggable reverteffect Example'>Scriptaculous Draggable reverteffect Example</a> <small>I had a bit of a hard time finding which...</small></li>
<li><a href='http://pagesofinterest.net/blog/2010/11/ie8-assigning-classnames-with-new-element/' rel='bookmark' title='IE8 &amp; Assigning Classnames With new Element(&#8216;&#8230;&#8217;)'>IE8 &#038; Assigning Classnames With new Element(&#8216;&#8230;&#8217;)</a> <small>When dynamically creating elements using Prototype&#8217;s new Element(&#8216;&#8230;&#8217;) method, I...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/jquery-error-g-is-undefined/' rel='bookmark' title='jQuery Error: &#8216;g is undefined&#8217;'>jQuery Error: &#8216;g is undefined&#8217;</a> <small>Discovered the cause of this annoying (but seemingly impotent) error...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/11/scriptaculous-effect-morph-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check if it’s an Object!</title>
		<link>http://pagesofinterest.net/blog/2010/11/check-if-its-an-object/</link>
		<comments>http://pagesofinterest.net/blog/2010/11/check-if-its-an-object/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 03:14:36 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Null]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=941</guid>
		<description><![CDATA[OK Javascripters, check it out: the IE family don&#8217;t like you. Or they love you. I&#8217;m not sure. Maybe they just want you to be better? To produce perfect absolutely syntax-error free code. Code that caters for even the most careful pedantic Javascript interpreters. Example: In the WYSIWYG text editor we use, when one clicks [...]
No related posts.]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/11/check-if-its-an-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS-Kit Comments for Each Blog Entry</title>
		<link>http://pagesofinterest.net/blog/2008/06/js-kit-comments-for-each-blog-entry/</link>
		<comments>http://pagesofinterest.net/blog/2008/06/js-kit-comments-for-each-blog-entry/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 08:29:48 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[RW Tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=344</guid>
		<description><![CDATA[In this short tutorial I will describe how to use the <a href="http://js-kit.com/comments/">JS-Kit commenting</a> system in Rapidweaver. By then end of this tutorial you will have learned how to insert the code into yor blog so that each post has its own comments - the comments will show in permalinks, category and tag versions of each post. When someone comments on a post, JS-Kit will notify you by email. Included in the email that you, and other people who comment then recieve replies are sent will be a link to the permalink entry of the post in which the comment is displayed. You will be able to use JS-Kitâ€™s excellent moderating system to manage your comments.
<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2008/07/js-kit-comments-greybox-on-any-page/' rel='bookmark' title='JS-Kit Comments + Greybox on Any Page'>JS-Kit Comments + Greybox on Any Page</a> <small>I realised that I didnâ€™t want comments to be visible...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/03/js-kit-comments-correct-usage-of-the-permalink-and-path-attributes/' rel='bookmark' title='JS-Kit Comments: Correct Usage of the &#8216;Permalink&#8217; and &#8216;Path&#8217; Attributes'>JS-Kit Comments: Correct Usage of the &#8216;Permalink&#8217; and &#8216;Path&#8217; Attributes</a> <small>It took me awhile to understand what the &#8216;path&#8217; attribute...</small></li>
<li><a href='http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/' rel='bookmark' title='Styling JS-Kit Comments'>Styling JS-Kit Comments</a> <small>Styling JS-Comments is really quite straightforward. I strongly recommend you...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/06/js-kit-comments-for-each-blog-entry/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Archive Annihilator Improved Again</title>
		<link>http://pagesofinterest.net/blog/2008/06/archive-annihilator-improved-again/</link>
		<comments>http://pagesofinterest.net/blog/2008/06/archive-annihilator-improved-again/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 00:15:56 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Snippet - 小片]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=382</guid>
		<description><![CDATA[The solution for the â€œsidebar explosionâ€ effect that the Archive Annihilator caused occurred to me earlier today. The fix was pretty simple, the fact that I didnâ€™t think of it right away is a little embarrassing.
No related posts.]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/06/archive-annihilator-improved-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta name="generator" content="RapidWeaver" />
		<link rel="icon" href="http://pagesofinterest.net/favicon.ico" type="image/x-icon" />
		<link rel="shortcut icon" href="http://pagesofinterest.net/favicon.ico" type="image/x-icon" />
		

        				<title>Tag Archive for &quot;&quot; | Blog | Pages of Interest</title>
  
		        
		<link rel="stylesheet" type="text/css" media="print" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/consolidated-print-79.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/consolidated-screen-79.css" />
		
		
		
		
		
                
        <link rel="icon" type="image/png" href="http://pagesofinterest.net/favicon.png" />        

		<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/libs.js?1328448743"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/javascript.js?1328448743"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/site.js?1328448743"></script>
		<!--[if IE]><script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/html5.js?1328448743"></script>
		<link rel="stylesheet" type="text/css" media="screen" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/css/ie.css" />
		<![endif]-->
		
	    
	    
