<?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>WM Weblog &#187; Website Scripts</title>
	<atom:link href="http://www.wmweblog.com/category/website-scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wmweblog.com</link>
	<description>Webmaster Tips, Guides, Tutorials &#38; Discoveries</description>
	<lastBuildDate>Mon, 31 May 2010 04:31:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Open All Links on Page in a New Window with Javascript</title>
		<link>http://www.wmweblog.com/open-all-links-on-page-in-a-new-window-with-javascript/</link>
		<comments>http://www.wmweblog.com/open-all-links-on-page-in-a-new-window-with-javascript/#comments</comments>
		<pubDate>Wed, 26 May 2010 17:45:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.wmweblog.com/?p=240</guid>
		<description><![CDATA[This is very easy to accomplish. Simply put this code in the &#60;head&#62; of your web page.
Note: If you are using Wordpress or another Publishing system and it&#8217;s not working as intended you may need to load it from a different file. Simply make a open-all-links.js file and load it from your header.
&#60;script&#62;
onload = function() [...]]]></description>
			<content:encoded><![CDATA[<p>This is very easy to accomplish. Simply put this code in the &lt;head&gt; of your web page.</p>
<p><span id="more-240"></span>Note: If you are using Wordpress or another Publishing system and it&#8217;s not working as intended you may need to load it from a different file. Simply make a open-all-links.js file and load it from your header.</p>
<pre dir="ltr">&lt;script&gt;
onload = function() {
    var frame = parent.frames[0].document;
    var links = frame.getElementsByTagName('a');
    for (var i=0; i&lt;links.length; ++i) {
        links[i].setAttribute('target','_blank');
    }
}
&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wmweblog.com/open-all-links-on-page-in-a-new-window-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find out where your visitors are clicking</title>
		<link>http://www.wmweblog.com/find-out-where-your-visitors-are-clicking/</link>
		<comments>http://www.wmweblog.com/find-out-where-your-visitors-are-clicking/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 20:18:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[analyze]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[track]]></category>

		<guid isPermaLink="false">http://www.wmweblog.com/?p=15</guid>
		<description><![CDATA[This sweet script will tell you exactly where your visitors are cliking on your site. Very handy when you want to see if your webdesign is working as intented. Check it out here!
]]></description>
			<content:encoded><![CDATA[<p>This sweet script will tell you exactly where your visitors are cliking on your site. Very handy when you want to see if your webdesign is working as intented. Check it out <a href="http://www.labsmedia.com/clickheat/index.html" target="_blank">here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wmweblog.com/find-out-where-your-visitors-are-clicking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
